T0 - type of 0th elementT1 - type of 1th elementT2 - type of 2th elementT3 - type of 3th elementT4 - type of 4th elementT5 - type of 5th elementT6 - type of 6th elementT7 - type of 7th elementT8 - type of 8th elementpublic abstract class Tuple9<T0,T1,T2,T3,T4,T5,T6,T7,T8> extends BaseTuple
| Constructor and Description |
|---|
Tuple9() |
| Modifier and Type | Method and Description |
|---|---|
abstract T0 |
get_0()
Gets the 0th element.
|
abstract T1 |
get_1()
Gets the 1st element.
|
abstract T2 |
get_2()
Gets the 2nd element.
|
abstract T3 |
get_3()
Gets the 3th element.
|
abstract T4 |
get_4()
Gets the 4th element.
|
abstract T5 |
get_5()
Gets the 5th element.
|
abstract T6 |
get_6()
Gets the 6th element.
|
abstract T7 |
get_7()
Gets the 7th element.
|
abstract T8 |
get_8()
Gets the 8th element.
|
static <T0,T1,T2,T3,T4,T5,T6,T7,T8> |
of(T0 t0,
T1 t1,
T2 t2,
T3 t3,
T4 t4,
T5 t5,
T6 t6,
T7 t7,
T8 t8)
Creates a
Tuple9 of 9 elements. |
int |
size()
Gets the number of elements of the
Tuple. |
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> |
tail()
Gets a
Tuple8 with all the elements of this tuple skipping the first
one. |
public static <T0,T1,T2,T3,T4,T5,T6,T7,T8> Tuple9<T0,T1,T2,T3,T4,T5,T6,T7,T8> of(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8)
Tuple9 of 9 elements.T0 - type of 0th elementT1 - type of 1th elementT2 - type of 2th elementT3 - type of 3th elementT4 - type of 4th elementT5 - type of 5th elementT6 - type of 6th elementT7 - type of 7th elementT8 - type of 8th elementt0 - 0th elementt1 - 1th elementt2 - 2th elementt3 - 3th elementt4 - 4th elementt5 - 5th elementt6 - 6th elementt7 - 7th elementt8 - 8th elementTuple9public int size()
TupleTuple.Tuplepublic abstract T0 get_0()
public abstract T1 get_1()
public abstract T2 get_2()
public abstract T3 get_3()
public abstract T4 get_4()
public abstract T5 get_5()
public abstract T6 get_6()
public abstract T7 get_7()
public abstract T8 get_8()
Copyright © 2021. All rights reserved.