Interface OperandTwo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OperandTwo.Builder,OperandTwo>,SdkBuilder<OperandTwo.Builder,OperandTwo>,SdkPojo
- Enclosing class:
- OperandTwo
public static interface OperandTwo.Builder extends SdkPojo, CopyableBuilder<OperandTwo.Builder,OperandTwo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description OperandTwo.BuilderbooleanValue(Boolean booleanValue)Boolean value type.OperandTwo.BuilderdoubleValue(Double doubleValue)Double value type.default OperandTwo.BuilderemptyValue(Consumer<EmptyOperandValue.Builder> emptyValue)Empty value type.OperandTwo.BuilderemptyValue(EmptyOperandValue emptyValue)Empty value type.OperandTwo.BuilderstringValue(String stringValue)String value type.-
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
-
booleanValue
OperandTwo.Builder booleanValue(Boolean booleanValue)
Boolean value type.
- Parameters:
booleanValue- Boolean value type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
doubleValue
OperandTwo.Builder doubleValue(Double doubleValue)
Double value type.
- Parameters:
doubleValue- Double value type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emptyValue
OperandTwo.Builder emptyValue(EmptyOperandValue emptyValue)
Empty value type.
- Parameters:
emptyValue- Empty value type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emptyValue
default OperandTwo.Builder emptyValue(Consumer<EmptyOperandValue.Builder> emptyValue)
Empty value type.
This is a convenience method that creates an instance of theEmptyOperandValue.Builderavoiding the need to create one manually viaEmptyOperandValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toemptyValue(EmptyOperandValue).- Parameters:
emptyValue- a consumer that will call methods onEmptyOperandValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
emptyValue(EmptyOperandValue)
-
stringValue
OperandTwo.Builder stringValue(String stringValue)
String value type.
- Parameters:
stringValue- String value type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-