Uses of Class
org.apache.commons.lang3.tuple.ImmutableTriple
Package
Description
Tuple classes, starting with a Pair class in version 3.0.
-
Uses of ImmutableTriple in org.apache.commons.lang3.tuple
Modifier and TypeFieldDescriptionstatic final ImmutableTriple<?,
?, ?>[] ImmutableTriple.EMPTY_ARRAY
An empty array.Modifier and TypeMethodDescriptionstatic <L,
M, R> ImmutableTriple<L, M, R>[] ImmutableTriple.emptyArray()
Returns the empty array singleton that can be assigned without compiler warning.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.static <L,
M, R> ImmutableTriple<L, M, R> ImmutableTriple.ofNonNull
(L left, M middle, R right) Obtains an immutable triple of three non-null objects inferring the generic types.