Class ImmutableNotOperator
java.lang.Object
io.dialob.session.engine.program.expr.arith.ImmutableNotOperator
- All Implemented Interfaces:
NotOperator,UnaryOperator,Expression,Serializable
@Generated(from="NotOperator",
generator="Immutables")
@ParametersAreNonnullByDefault
@Generated("org.immutables.processor.ProxyProcessor")
@Immutable
@CheckReturnValue
public final class ImmutableNotOperator
extends Object
implements NotOperator
Immutable implementation of
NotOperator.
Use the builder to create immutable instances:
ImmutableNotOperator.builder().
Use the static factory method to create immutable instances:
ImmutableNotOperator.of().
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classBuilds instances of typeImmutableNotOperator. -
Method Summary
Modifier and TypeMethodDescriptionstatic ImmutableNotOperator.Builderbuilder()Creates a builder forImmutableNotOperator.static ImmutableNotOperatorcopyOf(NotOperator instance) Creates an immutable copy of aNotOperatorvalue.booleanThis instance is equal to all instances ofImmutableNotOperatorthat have equal attribute values.inthashCode()Computes a hash code from attributes:expression.static ImmutableNotOperatorof(Expression expression) Construct a new immutableNotOperatorinstance.toString()Prints the immutable valueNotOperatorwith attribute values.final ImmutableNotOperatorwithExpression(Expression value) Copy the current immutable object by setting a value for theexpressionattribute.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.NotOperator
apply, getValueTypeMethods inherited from interface io.dialob.session.engine.program.expr.arith.UnaryOperator
eval, getEvalRequiredConditions
-
Method Details
-
getExpression
- Specified by:
getExpressionin interfaceUnaryOperator- Returns:
- The value of the
expressionattribute
-
withExpression
Copy the current immutable object by setting a value for theexpressionattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for expression- Returns:
- A modified copy or the
thisobject
-
equals
This instance is equal to all instances ofImmutableNotOperatorthat have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:expression. -
toString
Prints the immutable valueNotOperatorwith attribute values. -
of
Construct a new immutableNotOperatorinstance.- Parameters:
expression- The value for theexpressionattribute- Returns:
- An immutable NotOperator instance
-
copyOf
Creates an immutable copy of aNotOperatorvalue. 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 NotOperator instance
-
builder
Creates a builder forImmutableNotOperator.ImmutableNotOperator.builder() .expression(io.dialob.session.engine.program.model.Expression) // requiredexpression.build();- Returns:
- A new ImmutableNotOperator builder
-