Uses of Class
org.apache.commons.lang3.tuple.ImmutableTriple
-
Packages that use ImmutableTriple Package Description org.apache.commons.lang3.tuple Tuple classes, starting with a Pair class in version 3.0. -
-
Uses of ImmutableTriple in org.apache.commons.lang3.tuple
Fields in org.apache.commons.lang3.tuple declared as ImmutableTriple Modifier and Type Field Description private static ImmutableTriple
ImmutableTriple. NULL
An immutable triple of nulls.Methods in org.apache.commons.lang3.tuple that return ImmutableTriple Modifier and Type Method Description static <L,M,R>
ImmutableTriple<L,M,R>ImmutableTriple. nullTriple()
Returns an immutable triple of nulls.static <L,M,R>
ImmutableTriple<L,M,R>ImmutableTriple. of(L left, M middle, R right)
Obtains an immutable triple of three objects inferring the generic types.
-