Interface CategoricalValues.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CategoricalValues.Builder,CategoricalValues>,SdkBuilder<CategoricalValues.Builder,CategoricalValues>,SdkPojo
- Enclosing class:
- CategoricalValues
public static interface CategoricalValues.Builder extends SdkPojo, CopyableBuilder<CategoricalValues.Builder,CategoricalValues>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CategoricalValues.BuildernumberOfCategory(Integer numberOfCategory)Indicates the number of categories in the data.CategoricalValues.Builderstatus(String status)Indicates whether there is a potential data issue related to categorical values.CategoricalValues.Builderstatus(StatisticalIssueStatus status)Indicates whether there is a potential data issue related to categorical values.-
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
-
status
CategoricalValues.Builder status(String status)
Indicates whether there is a potential data issue related to categorical values.
- Parameters:
status- Indicates whether there is a potential data issue related to categorical values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatisticalIssueStatus,StatisticalIssueStatus
-
status
CategoricalValues.Builder status(StatisticalIssueStatus status)
Indicates whether there is a potential data issue related to categorical values.
- Parameters:
status- Indicates whether there is a potential data issue related to categorical values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatisticalIssueStatus,StatisticalIssueStatus
-
numberOfCategory
CategoricalValues.Builder numberOfCategory(Integer numberOfCategory)
Indicates the number of categories in the data.
- Parameters:
numberOfCategory- Indicates the number of categories in the data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-