@ParametersAreNonnullByDefault @Generated(value="org.immutables.processor.ProxyProcessor") @Immutable @CheckReturnValue public final class ImmutableFN3WithLabel<A,B,C,R> extends FN3.FN3WithLabel<A,B,C,R>
FN3.FN3WithLabel.
Use the builder to create immutable instances:
ImmutableFN3WithLabel.builder().
Use the static factory method to create immutable instances:
ImmutableFN3WithLabel.of().
| Modifier and Type | Class and Description |
|---|---|
static class |
ImmutableFN3WithLabel.Builder<A,B,C,R>
Builds instances of type
ImmutableFN3WithLabel. |
| Modifier and Type | Method and Description |
|---|---|
static <A,B,C,R> ImmutableFN3WithLabel.Builder<A,B,C,R> |
builder()
Creates a builder for
ImmutableFN3WithLabel. |
static <A,B,C,R> ImmutableFN3WithLabel<A,B,C,R> |
copyOf(FN3.FN3WithLabel<A,B,C,R> instance)
Creates an immutable copy of a
FN3.FN3WithLabel value. |
protected FN3<A,B,C,R> |
delegate() |
boolean |
equals(Object another)
This instance is equal to all instances of
ImmutableFN3WithLabel that have equal attribute values. |
int |
hashCode()
Computes a hash code from attributes:
delegate, label. |
protected String |
label() |
static <A,B,C,R> ImmutableFN3WithLabel<A,B,C,R> |
of(FN3<A,B,C,R> delegate,
String label)
Construct a new immutable
FN3WithLabel instance. |
String |
toString()
Prints the immutable value
FN3WithLabel with attribute values. |
ImmutableFN3WithLabel<A,B,C,R> |
withDelegate(FN3<A,B,C,R> value)
Copy the current immutable object by setting a value for the
delegate attribute. |
ImmutableFN3WithLabel<A,B,C,R> |
withLabel(String value)
Copy the current immutable object by setting a value for the
label attribute. |
apply, asHumanReadableclone, finalize, getClass, notify, notifyAll, wait, wait, waitcheckNull, mapOnlyIfNotNull, withLabelasHumanReadableprotected String label()
public final ImmutableFN3WithLabel<A,B,C,R> withDelegate(FN3<A,B,C,R> value)
delegate attribute.
A shallow reference equality check is used to prevent copying of the same value by returning this.value - A new value for delegatethis objectpublic final ImmutableFN3WithLabel<A,B,C,R> withLabel(String value)
label attribute.
An equals check used to prevent copying of the same value by returning this.value - A new value for labelthis objectpublic boolean equals(@Nullable Object another)
ImmutableFN3WithLabel that have equal attribute values.public int hashCode()
delegate, label.public String toString()
FN3WithLabel with attribute values.public static <A,B,C,R> ImmutableFN3WithLabel<A,B,C,R> of(FN3<A,B,C,R> delegate, String label)
FN3WithLabel instance.A - generic parameter AB - generic parameter BC - generic parameter CR - generic parameter Rdelegate - The value for the delegate attributelabel - The value for the label attributepublic static <A,B,C,R> ImmutableFN3WithLabel<A,B,C,R> copyOf(FN3.FN3WithLabel<A,B,C,R> instance)
FN3.FN3WithLabel value.
Uses accessors to get values to initialize the new immutable instance.
If an instance is already immutable, it is returned as is.A - generic parameter AB - generic parameter BC - generic parameter CR - generic parameter Rinstance - The instance to copypublic static <A,B,C,R> ImmutableFN3WithLabel.Builder<A,B,C,R> builder()
ImmutableFN3WithLabel.
ImmutableFN3WithLabel.<A, B, C, R>builder()
.delegate(de.flapdoodle.formula.calculate.functions.FN3<A, B, C, R>) // required delegate
.label(String) // required label
.build();
A - generic parameter AB - generic parameter BC - generic parameter CR - generic parameter RCopyright © 2023. All rights reserved.