view src/main/java/alice/datasegment/DataSegmentValue.java @ 345:8f71c3e6f11d

Change directory structure Maven standard
author sugi
date Wed, 16 Apr 2014 18:26:07 +0900
parents
children aefbe41fcf12
line wrap: on
line source

package alice.datasegment;

import org.msgpack.type.Value;

public class DataSegmentValue {

	public int index;
	public Value val;
	public String from;
	public Object obj;
	
	public DataSegmentValue(int index, Value val, Object obj,String reverseKey) {
		this.index = index;
		this.val = val;
		this.from = reverseKey;
		this.obj = obj;
	}
	
	public DataSegmentValue(int index, Value val,String reverseKey) {
		this.index = index;
		this.val = val;
		this.from = reverseKey;
	}
	
}