view src/main/java/alice/datasegment/DataSegmentValue.java @ 452:f68d103498e0 dispose

refactor (InputDataSegment holder class changed)
author sugi
date Tue, 28 Oct 2014 17:24:16 +0900
parents ad1547756565
children bcf6f4a6fcd0
line wrap: on
line source

package alice.datasegment;

public class DataSegmentValue {

    public int index;
    public Object val;
    public String from;
    public boolean compressed;
    public boolean serialized;

    public DataSegmentValue(int index, Object val, String reverseKey, 
            boolean compressed, boolean serialized) {
        this.index = index;
        this.val = val;
        this.from = reverseKey;
        this.compressed = compressed;
        this.serialized = serialized;
    }
    
}