Interface FeatureValue.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FeatureValue.Builder,FeatureValue>
,SdkBuilder<FeatureValue.Builder,FeatureValue>
,SdkPojo
- Enclosing class:
- FeatureValue
public static interface FeatureValue.Builder extends SdkPojo, CopyableBuilder<FeatureValue.Builder,FeatureValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FeatureValue.Builder
featureName(String featureName)
The name of a feature that a feature value corresponds to.FeatureValue.Builder
valueAsString(String valueAsString)
The value in string format associated with a feature.FeatureValue.Builder
valueAsStringList(String... valueAsStringList)
The list of values in string format associated with a feature.FeatureValue.Builder
valueAsStringList(Collection<String> valueAsStringList)
The list of values in string format associated with a feature.-
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
-
featureName
FeatureValue.Builder featureName(String featureName)
The name of a feature that a feature value corresponds to.
- Parameters:
featureName
- The name of a feature that a feature value corresponds to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
valueAsString
FeatureValue.Builder valueAsString(String valueAsString)
The value in string format associated with a feature. Used when your
CollectionType
isNone
. Note that features types can beString
,Integral
, orFractional
. This value represents all three types as a string.- Parameters:
valueAsString
- The value in string format associated with a feature. Used when yourCollectionType
isNone
. Note that features types can beString
,Integral
, orFractional
. This value represents all three types as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
valueAsStringList
FeatureValue.Builder valueAsStringList(Collection<String> valueAsStringList)
The list of values in string format associated with a feature. Used when your
CollectionType
is aList
,Set
, orVector
. Note that features types can beString
,Integral
, orFractional
. These values represents all three types as a string.- Parameters:
valueAsStringList
- The list of values in string format associated with a feature. Used when yourCollectionType
is aList
,Set
, orVector
. Note that features types can beString
,Integral
, orFractional
. These values represents all three types as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
valueAsStringList
FeatureValue.Builder valueAsStringList(String... valueAsStringList)
The list of values in string format associated with a feature. Used when your
CollectionType
is aList
,Set
, orVector
. Note that features types can beString
,Integral
, orFractional
. These values represents all three types as a string.- Parameters:
valueAsStringList
- The list of values in string format associated with a feature. Used when yourCollectionType
is aList
,Set
, orVector
. Note that features types can beString
,Integral
, orFractional
. These values represents all three types as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-