ImmutableQuadruple<T> |
ImmutableQuadruple.Builder.build() |
|
static <T> ImmutableQuadruple<T> |
ImmutableQuadruple.copyOf(Quadruple<T> instance) |
Creates an immutable copy of a Quadruple value.
|
static <T> ImmutableQuadruple<T> |
ImmutableQuadruple.of(T a,
T b,
T c,
T d) |
Construct a new immutable Quadruple instance.
|
ImmutableQuadruple<T> |
ImmutableQuadruple.withA(T value) |
Copy the current immutable object by setting a value for the a attribute.
|
ImmutableQuadruple<T> |
ImmutableQuadruple.withB(T value) |
Copy the current immutable object by setting a value for the b attribute.
|
ImmutableQuadruple<T> |
ImmutableQuadruple.withC(T value) |
Copy the current immutable object by setting a value for the c attribute.
|
ImmutableQuadruple<T> |
ImmutableQuadruple.withD(T value) |
Copy the current immutable object by setting a value for the d attribute.
|