Interface Variant.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Variant.Builder,Variant>,SdkBuilder<Variant.Builder,Variant>,SdkPojo
- Enclosing class:
- Variant
public static interface Variant.Builder extends SdkPojo, CopyableBuilder<Variant.Builder,Variant>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Variant.BuilderbooleanValue(Boolean booleanValue)Asset property data of type Boolean (true or false).Variant.BuilderdoubleValue(Double doubleValue)Asset property data of type double (floating point number).Variant.BuilderintegerValue(Integer integerValue)Asset property data of type integer (whole number).Variant.BuilderstringValue(String stringValue)Asset property data of type string (sequence of characters).-
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, sdkFields
-
-
-
-
Method Detail
-
stringValue
Variant.Builder stringValue(String stringValue)
Asset property data of type string (sequence of characters).
- Parameters:
stringValue- Asset property data of type string (sequence of characters).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
integerValue
Variant.Builder integerValue(Integer integerValue)
Asset property data of type integer (whole number).
- Parameters:
integerValue- Asset property data of type integer (whole number).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
doubleValue
Variant.Builder doubleValue(Double doubleValue)
Asset property data of type double (floating point number).
- Parameters:
doubleValue- Asset property data of type double (floating point number).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
booleanValue
Variant.Builder booleanValue(Boolean booleanValue)
Asset property data of type Boolean (true or false).
- Parameters:
booleanValue- Asset property data of type Boolean (true or false).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-