Package org.uberfire.commons.data
Class Triple<K1,K2,K3>
- java.lang.Object
-
- org.uberfire.commons.data.Triple<K1,K2,K3>
-
public class Triple<K1,K2,K3> extends Object
-
-
Method Detail
-
newTriple
public static <K1,K2,K3> Triple<K1,K2,K3> newTriple(K1 k1, K2 k2, K3 k3)
static factory method- Type Parameters:
K1-K2-- Parameters:
k1-k2-- Returns:
-
getK1
public K1 getK1()
- Returns:
- the first key
-
getK2
public K2 getK2()
- Returns:
- the second key
-
getK3
public K3 getK3()
- Returns:
- the third key
-
-