Example usage for Java org.apache.commons.lang3.tuple ImmutablePair fields, constructors, methods, implement or subclass
The text is from its open source code.
ImmutablePair(final L left, final R right) Create a new pair instance. |
L | getLeft() |
R | getRight() |
ImmutablePair | of(final L left, final R right) Obtains an immutable pair of from two objects inferring the generic types. This factory allows the pair to be created using inference to obtain the generic types. |