Package | Description |
---|---|
com.rhfung.Interop |
Modifier and Type | Method and Description |
---|---|
static <X> Tuple<X,X,X> |
Tuple.fromArray(X[] array)
Create tuple from array.
|
static <X> Tuple<X,X,X> |
Tuple.fromCollection(java.util.Collection<X> collection)
Create tuple from collection.
|
static <X> Tuple<X,X,X> |
Tuple.fromIterable(java.lang.Iterable<X> iterable)
Create tuple from iterable.
|
static <X> Tuple<X,X,X> |
Tuple.fromIterable(java.lang.Iterable<X> iterable,
int index)
Create tuple from iterable, starting from the specified index.
|
static <A,B,C> Tuple<A,B,C> |
Tuple.with(A value0,
B value1,
C value2) |