diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/java/alice/datasegment/DataSegmentValue.java	Wed Apr 16 18:26:07 2014 +0900
@@ -0,0 +1,25 @@
+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;
+	}
+	
+}