Interface EntitlementValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EntitlementValue.Builder,EntitlementValue>,SdkBuilder<EntitlementValue.Builder,EntitlementValue>,SdkPojo
- Enclosing class:
- EntitlementValue
public static interface EntitlementValue.Builder extends SdkPojo, CopyableBuilder<EntitlementValue.Builder,EntitlementValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntitlementValue.BuilderbooleanValue(Boolean booleanValue)The BooleanValue field will be populated with a boolean value when the entitlement is a boolean type.EntitlementValue.BuilderdoubleValue(Double doubleValue)The DoubleValue field will be populated with a double value when the entitlement is a double type.EntitlementValue.BuilderintegerValue(Integer integerValue)The IntegerValue field will be populated with an integer value when the entitlement is an integer type.EntitlementValue.BuilderstringValue(String stringValue)The StringValue field will be populated with a string value when the entitlement is a string 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
-
integerValue
EntitlementValue.Builder integerValue(Integer integerValue)
The IntegerValue field will be populated with an integer value when the entitlement is an integer type. Otherwise, the field will not be set.
- Parameters:
integerValue- The IntegerValue field will be populated with an integer value when the entitlement is an integer type. Otherwise, the field will not be set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
doubleValue
EntitlementValue.Builder doubleValue(Double doubleValue)
The DoubleValue field will be populated with a double value when the entitlement is a double type. Otherwise, the field will not be set.
- Parameters:
doubleValue- The DoubleValue field will be populated with a double value when the entitlement is a double type. Otherwise, the field will not be set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
booleanValue
EntitlementValue.Builder booleanValue(Boolean booleanValue)
The BooleanValue field will be populated with a boolean value when the entitlement is a boolean type. Otherwise, the field will not be set.
- Parameters:
booleanValue- The BooleanValue field will be populated with a boolean value when the entitlement is a boolean type. Otherwise, the field will not be set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringValue
EntitlementValue.Builder stringValue(String stringValue)
The StringValue field will be populated with a string value when the entitlement is a string type. Otherwise, the field will not be set.
- Parameters:
stringValue- The StringValue field will be populated with a string value when the entitlement is a string type. Otherwise, the field will not be set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-