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