ImmutablePair<L,R> |
ImmutablePair.Builder.build() |
|
static <L,R> ImmutablePair<L,R> |
ImmutablePair.copyOf(Pair<L,R> instance) |
Creates an immutable copy of a Pair value.
|
static <L,R> ImmutablePair<L,R> |
ImmutablePair.of(L left,
R right) |
Construct a new immutable Pair instance.
|
ImmutablePair<L,R> |
ImmutablePair.withLeft(L value) |
Copy the current immutable object by setting a value for the left attribute.
|
ImmutablePair<L,R> |
ImmutablePair.withRight(R value) |
Copy the current immutable object by setting a value for the right attribute.
|