Class ImmutableValueSetToListOperator
java.lang.Object
io.dialob.session.engine.program.expr.arith.ImmutableValueSetToListOperator
- All Implemented Interfaces:
ValueSetToListOperator,Expression,Serializable
@Generated(from="ValueSetToListOperator",
generator="Immutables")
@ParametersAreNonnullByDefault
@Generated("org.immutables.processor.ProxyProcessor")
@Immutable
@CheckReturnValue
public final class ImmutableValueSetToListOperator
extends Object
implements ValueSetToListOperator
Immutable implementation of
ValueSetToListOperator.
Use the builder to create immutable instances:
ImmutableValueSetToListOperator.builder().
Use the static factory method to create immutable instances:
ImmutableValueSetToListOperator.of().
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classBuilds instances of typeImmutableValueSetToListOperator. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Creates a builder forImmutableValueSetToListOperator.copyOf(ValueSetToListOperator instance) Creates an immutable copy of aValueSetToListOperatorvalue.booleanThis instance is equal to all instances ofImmutableValueSetToListOperatorthat have equal attribute values.inthashCode()Computes a hash code from attributes:valueSetId.of(ValueSetId valueSetId) Construct a new immutableValueSetToListOperatorinstance.toString()Prints the immutable valueValueSetToListOperatorwith attribute values.withValueSetId(ValueSetId value) Copy the current immutable object by setting a value for thevalueSetIdattribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface io.dialob.session.engine.program.expr.arith.ValueSetToListOperator
eval, getEvalRequiredConditions, getValueType
-
Method Details
-
getValueSetId
- Specified by:
getValueSetIdin interfaceValueSetToListOperator- Returns:
- The value of the
valueSetIdattribute
-
withValueSetId
Copy the current immutable object by setting a value for thevalueSetIdattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for valueSetId- Returns:
- A modified copy or the
thisobject
-
equals
This instance is equal to all instances ofImmutableValueSetToListOperatorthat have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:valueSetId. -
toString
Prints the immutable valueValueSetToListOperatorwith attribute values. -
of
Construct a new immutableValueSetToListOperatorinstance.- Parameters:
valueSetId- The value for thevalueSetIdattribute- Returns:
- An immutable ValueSetToListOperator instance
-
copyOf
Creates an immutable copy of aValueSetToListOperatorvalue. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Parameters:
instance- The instance to copy- Returns:
- A copied immutable ValueSetToListOperator instance
-
builder
Creates a builder forImmutableValueSetToListOperator.ImmutableValueSetToListOperator.builder() .valueSetId(io.dialob.session.engine.session.model.ValueSetId) // requiredvalueSetId.build();- Returns:
- A new ImmutableValueSetToListOperator builder
-