Uses of Class
org.apache.commons.lang3.tuple.ImmutablePair
-
Packages that use ImmutablePair Package Description org.apache.commons.lang3.tuple Tuple classes, starting with a Pair class in version 3.0. -
-
Uses of ImmutablePair in org.apache.commons.lang3.tuple
Fields in org.apache.commons.lang3.tuple declared as ImmutablePair Modifier and Type Field Description static ImmutablePair<?,?>[]
ImmutablePair. EMPTY_ARRAY
An empty array.Methods in org.apache.commons.lang3.tuple that return ImmutablePair Modifier and Type Method Description static <L,R>
ImmutablePair<L,R>[]ImmutablePair. emptyArray()
Returns the empty array singleton that can be assigned without compiler warning.static <L,R>
ImmutablePair<L,R>ImmutablePair. nullPair()
Returns an immutable pair of nulls.static <L,R>
ImmutablePair<L,R>ImmutablePair. of(java.util.Map.Entry<L,R> pair)
Creates an immutable pair from an existing pair.static <L,R>
ImmutablePair<L,R>ImmutablePair. of(L left, R right)
Creates an immutable pair of two objects inferring the generic types.
-