Uses of Class
org.apache.commons.lang3.tuple.MutablePair
-
Packages that use MutablePair Package Description org.apache.commons.lang3.tuple Tuple classes, starting with a Pair class in version 3.0. -
-
Uses of MutablePair in org.apache.commons.lang3.tuple
Fields in org.apache.commons.lang3.tuple declared as MutablePair Modifier and Type Field Description static MutablePair<?,?>[]
MutablePair. EMPTY_ARRAY
An empty array.Methods in org.apache.commons.lang3.tuple that return MutablePair Modifier and Type Method Description static <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>MutablePair. of(java.util.Map.Entry<L,R> pair)
Creates a mutable pair from an existing pair.static <L,R>
MutablePair<L,R>MutablePair. of(L left, R right)
Creates a mutable pair of two objects inferring the generic types.
-