Interface BooleanCondition.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<BooleanCondition.Builder,
,BooleanCondition> SdkBuilder<BooleanCondition.Builder,
,BooleanCondition> SdkPojo
- Enclosing class:
BooleanCondition
@Mutable
@NotThreadSafe
public static interface BooleanCondition.Builder
extends SdkPojo, CopyableBuilder<BooleanCondition.Builder,BooleanCondition>
-
Method Summary
Modifier and TypeMethodDescriptiondefault BooleanCondition.Builder
equalTo
(Consumer<BooleanOperands.Builder> equalTo) Tests that operandOne is equal to operandTwo.equalTo
(BooleanOperands equalTo) Tests that operandOne is equal to operandTwo.default BooleanCondition.Builder
notEqualTo
(Consumer<BooleanOperands.Builder> notEqualTo) Tests that operandOne is not equal to operandTwo.notEqualTo
(BooleanOperands notEqualTo) Tests that operandOne is not equal to operandTwo.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
equalTo
Tests that operandOne is equal to operandTwo.
- Parameters:
equalTo
- Tests that operandOne is equal to operandTwo.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
equalTo
Tests that operandOne is equal to operandTwo.
This is a convenience method that creates an instance of theBooleanOperands.Builder
avoiding the need to create one manually viaBooleanOperands.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toequalTo(BooleanOperands)
.- Parameters:
equalTo
- a consumer that will call methods onBooleanOperands.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
notEqualTo
Tests that operandOne is not equal to operandTwo.
- Parameters:
notEqualTo
- Tests that operandOne is not equal to operandTwo.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notEqualTo
Tests that operandOne is not equal to operandTwo.
This is a convenience method that creates an instance of theBooleanOperands.Builder
avoiding the need to create one manually viaBooleanOperands.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tonotEqualTo(BooleanOperands)
.- Parameters:
notEqualTo
- a consumer that will call methods onBooleanOperands.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-