annotate src/alice/datasegment/ReceiverData.java @ 276:3e0d1ac4f4a8

Refactor iterating process with for-each sentence.
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Fri, 18 Oct 2013 01:51:15 +0900
parents b5c642ba998e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
212
b5daccf36104 add Receiver state pattern
one
parents:
diff changeset
1 package alice.datasegment;
b5daccf36104 add Receiver state pattern
one
parents:
diff changeset
2
213
3f20b6401823 remove error form bitonic
one
parents: 212
diff changeset
3 import org.msgpack.type.ArrayValue;
214
fec0726bb126 remove error
one
parents: 213
diff changeset
4 import org.msgpack.type.Value;
213
3f20b6401823 remove error form bitonic
one
parents: 212
diff changeset
5
212
b5daccf36104 add Receiver state pattern
one
parents:
diff changeset
6 public interface ReceiverData {
b5daccf36104 add Receiver state pattern
one
parents:
diff changeset
7
217
b5c642ba998e change as** method and remove "local" key in TEST
sugi
parents: 216
diff changeset
8 public String asString();
b5c642ba998e change as** method and remove "local" key in TEST
sugi
parents: 216
diff changeset
9 public int asInteger();
b5c642ba998e change as** method and remove "local" key in TEST
sugi
parents: 216
diff changeset
10 public Float asFloat() ;
b5c642ba998e change as** method and remove "local" key in TEST
sugi
parents: 216
diff changeset
11 public ArrayValue asArray();
216
21bd8af1cf26 change asClass method
one
parents: 215
diff changeset
12 public <T> T asClass(Class<T> clazz);
214
fec0726bb126 remove error
one
parents: 213
diff changeset
13 public Value getVal();
215
1fd7067f0044 remove conversion flag
one
parents: 214
diff changeset
14 public Object getObj();
213
3f20b6401823 remove error form bitonic
one
parents: 212
diff changeset
15
212
b5daccf36104 add Receiver state pattern
one
parents:
diff changeset
16 }