Class ImmutableBinaryOperator.Builder<T>
java.lang.Object
io.dialob.session.engine.program.expr.arith.ImmutableBinaryOperator.Builder<T>
- Enclosing class:
ImmutableBinaryOperator<T>
@Generated(from="BinaryOperator",
generator="Immutables")
@NotThreadSafe
public static final class ImmutableBinaryOperator.Builder<T>
extends Object
Builds instances of type
ImmutableBinaryOperator.
Initialize attributes and then invoke the build() method to create an
immutable instance.
Builder is not thread-safe and generally should not be stored in a field or collection,
but instead used immediately to create instances.
-
Method Summary
Modifier and TypeMethodDescriptionfinal ImmutableBinaryOperator.Builder<T> addAllNodes(Iterable<? extends Expression> elements) Adds elements tonodeslist.final ImmutableBinaryOperator.Builder<T> addNodes(Expression element) Adds one element tonodeslist.final ImmutableBinaryOperator.Builder<T> addNodes(Expression... elements) Adds elements tonodeslist.build()Builds a newImmutableBinaryOperator.final ImmutableBinaryOperator.Builder<T> from(BinaryOperator<T> instance) Fill a builder with attribute values from the providedBinaryOperatorinstance.final ImmutableBinaryOperator.Builder<T> nodes(Iterable<? extends Expression> elements) Sets or replaces all elements fornodeslist.final ImmutableBinaryOperator.Builder<T> Initializes the value for thereducerattribute.
-
Method Details
-
from
@CanIgnoreReturnValue public final ImmutableBinaryOperator.Builder<T> from(BinaryOperator<T> instance) Fill a builder with attribute values from the providedBinaryOperatorinstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values. Collection elements and entries will be added, not replaced.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
addNodes
Adds one element tonodeslist.- Parameters:
element- A nodes element- Returns:
thisbuilder for use in a chained invocation
-
addNodes
@CanIgnoreReturnValue public final ImmutableBinaryOperator.Builder<T> addNodes(Expression... elements) Adds elements tonodeslist.- Parameters:
elements- An array of nodes elements- Returns:
thisbuilder for use in a chained invocation
-
nodes
@CanIgnoreReturnValue public final ImmutableBinaryOperator.Builder<T> nodes(Iterable<? extends Expression> elements) Sets or replaces all elements fornodeslist.- Parameters:
elements- An iterable of nodes elements- Returns:
thisbuilder for use in a chained invocation
-
addAllNodes
@CanIgnoreReturnValue public final ImmutableBinaryOperator.Builder<T> addAllNodes(Iterable<? extends Expression> elements) Adds elements tonodeslist.- Parameters:
elements- An iterable of nodes elements- Returns:
thisbuilder for use in a chained invocation
-
reducer
Initializes the value for thereducerattribute.- Parameters:
reducer- The value for reducer- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newImmutableBinaryOperator.- Returns:
- An immutable instance of BinaryOperator
- Throws:
IllegalStateException- if any required attributes are missing
-