public final class Tuples
extends Object
Represents a tuple of objects, which typically represents joined rows.
- 作成者:
- nkjm
-
メソッドの概要
static <T1,
T2,
T3> Tuple3<T1,T2,T3>
クラスから継承されたメソッド java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
メソッドの詳細
-
of
public static <T1,
T2> Tuple2<T1,T2> of(T1 t1,
T2 t2)
-
of
public static <T1,
T2,
T3> Tuple3<T1,T2,T3> of(T1 t1,
T2 t2,
T3 t3)