public class Tuples extends Object
| 构造器和说明 |
|---|
Tuples() |
| 限定符和类型 | 方法和说明 |
|---|---|
static TupleN |
of(Object... array) |
static <T1> Tuple1<T1> |
of(T1 first) |
static <T1,T2> Tuple2<T1,T2> |
of(T1 first,
T2 second) |
static <T1,T2,T3> Tuple3<T1,T2,T3> |
of(T1 first,
T2 second,
T3 third) |
static <T1,T2,T3,T4> |
of(T1 first,
T2 second,
T3 third,
T4 fourth) |
static <T1,T2,T3,T4,T5> |
of(T1 first,
T2 second,
T3 third,
T4 fourth,
T5 fifth) |
static <T1,T2,T3,T4,T5,T6> |
of(T1 first,
T2 second,
T3 third,
T4 fourth,
T5 fifth,
T6 sixth) |
static <T1,T2,T3,T4,T5,T6,T7> |
of(T1 first,
T2 second,
T3 third,
T4 fourth,
T5 fifth,
T6 sixth,
T7 seventh) |
static <T1,T2,T3,T4,T5,T6,T7,T8> |
of(T1 first,
T2 second,
T3 third,
T4 fourth,
T5 fifth,
T6 sixth,
T7 seventh,
T8 eighth) |
static <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
of(T1 first,
T2 second,
T3 third,
T4 fourth,
T5 fifth,
T6 sixth,
T7 seventh,
T8 eighth,
T9 ninth) |
public static <T1> Tuple1<T1> of(T1 first)
public static <T1,T2> Tuple2<T1,T2> of(T1 first, T2 second)
public static <T1,T2,T3> Tuple3<T1,T2,T3> of(T1 first, T2 second, T3 third)
public static <T1,T2,T3,T4> Tuple4<T1,T2,T3,T4> of(T1 first, T2 second, T3 third, T4 fourth)
public static <T1,T2,T3,T4,T5> Tuple5<T1,T2,T3,T4,T5> of(T1 first, T2 second, T3 third, T4 fourth, T5 fifth)
public static <T1,T2,T3,T4,T5,T6> Tuple6<T1,T2,T3,T4,T5,T6> of(T1 first, T2 second, T3 third, T4 fourth, T5 fifth, T6 sixth)
public static <T1,T2,T3,T4,T5,T6,T7> Tuple7<T1,T2,T3,T4,T5,T6,T7> of(T1 first, T2 second, T3 third, T4 fourth, T5 fifth, T6 sixth, T7 seventh)
public static <T1,T2,T3,T4,T5,T6,T7,T8> Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> of(T1 first, T2 second, T3 third, T4 fourth, T5 fifth, T6 sixth, T7 seventh, T8 eighth)
public static <T1,T2,T3,T4,T5,T6,T7,T8,T9> Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9> of(T1 first, T2 second, T3 third, T4 fourth, T5 fifth, T6 sixth, T7 seventh, T8 eighth, T9 ninth)
Copyright © 2024 fossc. All rights reserved.