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