Interface BooleanCondition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BooleanCondition.Builder,BooleanCondition>,SdkBuilder<BooleanCondition.Builder,BooleanCondition>,SdkPojo
- Enclosing class:
- BooleanCondition
public static interface BooleanCondition.Builder extends SdkPojo, CopyableBuilder<BooleanCondition.Builder,BooleanCondition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BooleanCondition.BuilderequalTo(Consumer<BooleanOperands.Builder> equalTo)Tests that operandOne is equal to operandTwo.BooleanCondition.BuilderequalTo(BooleanOperands equalTo)Tests that operandOne is equal to operandTwo.default BooleanCondition.BuildernotEqualTo(Consumer<BooleanOperands.Builder> notEqualTo)Tests that operandOne is not equal to operandTwo.BooleanCondition.BuildernotEqualTo(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 Detail
-
equalTo
BooleanCondition.Builder equalTo(BooleanOperands 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
default BooleanCondition.Builder equalTo(Consumer<BooleanOperands.Builder> equalTo)
Tests that operandOne is equal to operandTwo.
This is a convenience method that creates an instance of theBooleanOperands.Builderavoiding the need to create one manually viaBooleanOperands.builder().When the
Consumercompletes,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:
equalTo(BooleanOperands)
-
notEqualTo
BooleanCondition.Builder notEqualTo(BooleanOperands 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
default BooleanCondition.Builder notEqualTo(Consumer<BooleanOperands.Builder> notEqualTo)
Tests that operandOne is not equal to operandTwo.
This is a convenience method that creates an instance of theBooleanOperands.Builderavoiding the need to create one manually viaBooleanOperands.builder().When the
Consumercompletes,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:
notEqualTo(BooleanOperands)
-
-