类 Tuples
- java.lang.Object
-
- com.moilioncircle.redis.replicator.util.Tuples
-
public class Tuples extends Object
- 从以下版本开始:
- 3.3.0
- 作者:
- Leon Chen
-
-
构造器概要
构造器 构造器 说明 Tuples()
-
方法概要
所有方法 静态方法 具体方法 修饰符和类型 方法 说明 static <T1,T2>
Tuple2<T1,T2>of(T1 t1, T2 t2)static <T1,T2,T3>
Tuple3<T1,T2,T3>of(T1 t1, T2 t2, T3 t3)static <T1,T2,T3,T4>
Tuple4<T1,T2,T3,T4>of(T1 t1, T2 t2, T3 t3, T4 t4)static <T1,T2,T3,T4,T5>
Tuple5<T1,T2,T3,T4,T5>of(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5)
-
-
-
方法详细资料
-
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)
-
of
public static <T1,T2,T3,T4> Tuple4<T1,T2,T3,T4> of(T1 t1, T2 t2, T3 t3, T4 t4)
-
of
public static <T1,T2,T3,T4,T5> Tuple5<T1,T2,T3,T4,T5> of(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5)
-
-