@ParametersAreNonnullByDefault @Generated(value="org.immutables.processor.ProxyProcessor") @Immutable @CheckReturnValue public final class ImmutableFN3checkNull<A,B,C,R> extends FN3.FN3checkNull<A,B,C,R>
FN3.FN3checkNull.
Use the builder to create immutable instances:
ImmutableFN3checkNull.builder().
Use the static factory method to create immutable instances:
ImmutableFN3checkNull.of().
| Modifier and Type | Class and Description |
|---|---|
static class |
ImmutableFN3checkNull.Builder<A,B,C,R>
Builds instances of type
ImmutableFN3checkNull. |
| Modifier and Type | Method and Description |
|---|---|
protected String |
a() |
protected String |
b() |
static <A,B,C,R> ImmutableFN3checkNull.Builder<A,B,C,R> |
builder()
Creates a builder for
ImmutableFN3checkNull. |
protected String |
c() |
static <A,B,C,R> ImmutableFN3checkNull<A,B,C,R> |
copyOf(FN3.FN3checkNull<A,B,C,R> instance)
Creates an immutable copy of a
FN3.FN3checkNull value. |
protected F3<A,B,C,R> |
delegate() |
boolean |
equals(Object another)
This instance is equal to all instances of
ImmutableFN3checkNull that have equal attribute values. |
int |
hashCode()
Computes a hash code from attributes:
delegate, a, b, c. |
static <A,B,C,R> ImmutableFN3checkNull<A,B,C,R> |
of(F3<A,B,C,R> delegate,
String a,
String b,
String c)
Construct a new immutable
FN3checkNull instance. |
String |
toString()
Prints the immutable value
FN3checkNull with attribute values. |
ImmutableFN3checkNull<A,B,C,R> |
withA(String value)
Copy the current immutable object by setting a value for the
a attribute. |
ImmutableFN3checkNull<A,B,C,R> |
withB(String value)
Copy the current immutable object by setting a value for the
b attribute. |
ImmutableFN3checkNull<A,B,C,R> |
withC(String value)
Copy the current immutable object by setting a value for the
c attribute. |
ImmutableFN3checkNull<A,B,C,R> |
withDelegate(F3<A,B,C,R> value)
Copy the current immutable object by setting a value for the
delegate attribute. |
apply, asHumanReadableclone, finalize, getClass, notify, notifyAll, wait, wait, waitcheckNull, mapOnlyIfNotNull, withLabelasHumanReadableprotected String a()
protected String b()
protected String c()
public final ImmutableFN3checkNull<A,B,C,R> withDelegate(F3<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 ImmutableFN3checkNull<A,B,C,R> withA(String value)
a attribute.
An equals check used to prevent copying of the same value by returning this.value - A new value for athis objectpublic final ImmutableFN3checkNull<A,B,C,R> withB(String value)
b attribute.
An equals check used to prevent copying of the same value by returning this.value - A new value for bthis objectpublic final ImmutableFN3checkNull<A,B,C,R> withC(String value)
c attribute.
An equals check used to prevent copying of the same value by returning this.value - A new value for cthis objectpublic boolean equals(@Nullable Object another)
ImmutableFN3checkNull that have equal attribute values.public int hashCode()
delegate, a, b, c.public String toString()
FN3checkNull with attribute values.public static <A,B,C,R> ImmutableFN3checkNull<A,B,C,R> of(F3<A,B,C,R> delegate, String a, String b, String c)
FN3checkNull instance.A - generic parameter AB - generic parameter BC - generic parameter CR - generic parameter Rdelegate - The value for the delegate attributea - The value for the a attributeb - The value for the b attributec - The value for the c attributepublic static <A,B,C,R> ImmutableFN3checkNull<A,B,C,R> copyOf(FN3.FN3checkNull<A,B,C,R> instance)
FN3.FN3checkNull 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> ImmutableFN3checkNull.Builder<A,B,C,R> builder()
ImmutableFN3checkNull.
ImmutableFN3checkNull.<A, B, C, R>builder()
.delegate(de.flapdoodle.formula.calculate.functions.F3<A, B, C, R>) // required delegate
.a(String) // required a
.b(String) // required b
.c(String) // required c
.build();
A - generic parameter AB - generic parameter BC - generic parameter CR - generic parameter RCopyright © 2023. All rights reserved.