Serializable, TupleEasyTuple0, EasyTuple1, EasyTuple2, EasyTuple3, EasyTuple4, EasyTuple5, EasyTuple6, EasyTuple7, EasyTuple8, EasyTuple9public interface EasyTuple extends Tuple
| 限定符和类型 | 字段 | 说明 |
|---|---|---|
static long |
serialVersionUID |
| 限定符和类型 | 方法 | 说明 |
|---|---|---|
static EasyTuple |
clone(EasyTuple tuple) |
clone a tuple by shallow copy.
|
static EasyTuple0 |
empty() |
Create empty tuple
创建一个空元组 |
static EasyTuple0 |
of() |
Create empty EasyTuple
创建一个空元组 |
static <T> EasyTuple1<T> |
of(T _1) |
Create a EasyTuple of 1 element
创建1个元素的元组 |
static <T> EasyTuple2<T> |
of(T _1,
T _2) |
Create a EasyTuple of 2 elements
创建2个元素的元组 |
static <T> EasyTuple3<T> |
of(T _1,
T _2,
T _3) |
Create a EasyTuple of 3 elements
创建3个元素的元组 |
static <T> EasyTuple4<T> |
of(T _1,
T _2,
T _3,
T _4) |
Create a EasyTuple of 4 elements
创建4个元素的元组 |
static <T> EasyTuple5<T> |
of(T _1,
T _2,
T _3,
T _4,
T _5) |
Create a EasyTuple of 5 elements
创建5个元素的元组 |
static <T> EasyTuple6<T> |
of(T _1,
T _2,
T _3,
T _4,
T _5,
T _6) |
Create a EasyTuple of 6 elements
创建6个元素的元组 |
static <T> EasyTuple7<T> |
of(T _1,
T _2,
T _3,
T _4,
T _5,
T _6,
T _7) |
Create a EasyTuple of 7 elements
创建7个元素的元组 |
static <T> EasyTuple8<T> |
of(T _1,
T _2,
T _3,
T _4,
T _5,
T _6,
T _7,
T _8) |
Create a EasyTuple of 8 elements
创建8个元素的元组 |
static <T> EasyTuple9<T> |
of(T _1,
T _2,
T _3,
T _4,
T _5,
T _6,
T _7,
T _8,
T _9) |
Create a EasyTuple of 9 elements
创建9个元素的元组 |
default <T> List<T> |
toList() |
Transform this EasyTuple to List.
|
__, __, alias, alias, aliasesEquals, aliasType, arity, clearAlias, clone, containsAlias, containsAlias, copy, copyAliases, element, elementWithAlias, elementWithTupleAlias, getAliases, getTupleAliases, toMap, toSIstatic final long serialVersionUID
default <T> List<T> toList()
T - type of elements. 元素的类型static EasyTuple0 empty()
static EasyTuple0 of()
static <T> EasyTuple1<T> of(T _1)
T - type of element. 元素的类型_1 - the 1st element. 第1个元素static <T> EasyTuple2<T> of(T _1, T _2)
T - type of elements. 元素的类型_1 - the 1st element. 第1个元素_2 - the 2nd element. 第2个元素static <T> EasyTuple3<T> of(T _1, T _2, T _3)
T - type of elements. 元素的类型_1 - the 1st element. 第1个元素_2 - the 2nd element. 第2个元素_3 - the 3rd element. 第3个元素static <T> EasyTuple4<T> of(T _1, T _2, T _3, T _4)
T - type of elements. 元素的类型_1 - the 1st element. 第1个元素_2 - the 2nd element. 第2个元素_3 - the 3rd element. 第3个元素_4 - the 4th element. 第4个元素static <T> EasyTuple5<T> of(T _1, T _2, T _3, T _4, T _5)
T - type of elements. 元素的类型_1 - the 1st element. 第1个元素_2 - the 2nd element. 第2个元素_3 - the 3rd element. 第3个元素_4 - the 4th element. 第4个元素_5 - the 5th element. 第5个元素static <T> EasyTuple6<T> of(T _1, T _2, T _3, T _4, T _5, T _6)
T - type of elements. 元素的类型_1 - the 1st element. 第1个元素_2 - the 2nd element. 第2个元素_3 - the 3rd element. 第3个元素_4 - the 4th element. 第4个元素_5 - the 5th element. 第5个元素_6 - the 6th element. 第6个元素static <T> EasyTuple7<T> of(T _1, T _2, T _3, T _4, T _5, T _6, T _7)
T - type of elements. 元素的类型_1 - the 1st element. 第1个元素_2 - the 2nd element. 第2个元素_3 - the 3rd element. 第3个元素_4 - the 4th element. 第4个元素_5 - the 5th element. 第5个元素_6 - the 6th element. 第6个元素_7 - the 7th element. 第7个元素static <T> EasyTuple8<T> of(T _1, T _2, T _3, T _4, T _5, T _6, T _7, T _8)
T - type of elements. 元素的类型_1 - the 1st element. 第1个元素_2 - the 2nd element. 第2个元素_3 - the 3rd element. 第3个元素_4 - the 4th element. 第4个元素_5 - the 5th element. 第5个元素_6 - the 6th element. 第6个元素_7 - the 7th element. 第7个元素_8 - the 8th element. 第8个元素static <T> EasyTuple9<T> of(T _1, T _2, T _3, T _4, T _5, T _6, T _7, T _8, T _9)
T - type of elements. 元素的类型_1 - the 1st element. 第1个元素_2 - the 2nd element. 第2个元素_3 - the 3rd element. 第3个元素_4 - the 4th element. 第4个元素_5 - the 5th element. 第5个元素_6 - the 6th element. 第6个元素_7 - the 7th element. 第7个元素_8 - the 8th element. 第8个元素_9 - the 9th element. 第9个元素Copyright © 2023 io-fairy. All rights reserved.