Uses of Class
org.apache.commons.lang3.tuple.ImmutableTriple
-
Packages that use ImmutableTriple Package Description org.apache.commons.lang3.tuple -
-
Uses of ImmutableTriple in org.apache.commons.lang3.tuple
Fields in org.apache.commons.lang3.tuple declared as ImmutableTriple Modifier and Type Field Description static ImmutableTriple<?,?,?>[]ImmutableTriple. EMPTY_ARRAYAn empty array.private static ImmutableTripleImmutableTriple. NULLAn 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. emptyArray()Gets the empty array singleton that can be assigned without compiler warning.static <L,M,R>
ImmutableTriple<L,M,R>ImmutableTriple. nullTriple()Gets the immutable triple of nulls singleton.static <L,M,R>
ImmutableTriple<L,M,R>ImmutableTriple. of(L left, M middle, R right)Creates an immutable triple of three objects inferring the generic types.static <L,M,R>
ImmutableTriple<L,M,R>ImmutableTriple. ofNonNull(L left, M middle, R right)Creates an immutable triple of three non-null objects inferring the generic types.
-