Interface Tuple
public interface Tuple
-
Field Summary
Fields -
Method Summary
-
Field Details
-
MAX_ELEMENTS
static final int MAX_ELEMENTS- See Also:
-
-
Method Details
-
size
int size() -
valueAt
<T> T valueAt(int index) zero based index.Uplet2<String,Integer> u=new Uplet2<String,Integer>(String.class,Integer.class,"Hello",null); Integer i2=u._2; Integer i2=u.valueAt(1);- Type Parameters:
T- T- Parameters:
index- indexindex- zero based Index.- Returns:
- tuple value at index
-