Interface OperandTwo.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<OperandTwo.Builder,
,OperandTwo> SdkBuilder<OperandTwo.Builder,
,OperandTwo> SdkPojo
- Enclosing class:
OperandTwo
@Mutable
@NotThreadSafe
public static interface OperandTwo.Builder
extends SdkPojo, CopyableBuilder<OperandTwo.Builder,OperandTwo>
-
Method Summary
Modifier and TypeMethodDescriptionbooleanValue
(Boolean booleanValue) Boolean value type.doubleValue
(Double doubleValue) Double value type.default OperandTwo.Builder
emptyValue
(Consumer<EmptyOperandValue.Builder> emptyValue) Empty value type.emptyValue
(EmptyOperandValue emptyValue) Empty value type.stringValue
(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 Details
-
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
Double value type.
- Parameters:
doubleValue
- Double value type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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
Empty value type.
This is a convenience method that creates an instance of theEmptyOperandValue.Builder
avoiding the need to create one manually viaEmptyOperandValue.builder()
.When the
Consumer
completes,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:
-
stringValue
String value type.
- Parameters:
stringValue
- String value type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-