Interface BoxPlotOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BoxPlotOptions.Builder,BoxPlotOptions>,SdkBuilder<BoxPlotOptions.Builder,BoxPlotOptions>,SdkPojo
- Enclosing class:
- BoxPlotOptions
public static interface BoxPlotOptions.Builder extends SdkPojo, CopyableBuilder<BoxPlotOptions.Builder,BoxPlotOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BoxPlotOptions.BuilderallDataPointsVisibility(String allDataPointsVisibility)Determines the visibility of all data points of the box plot.BoxPlotOptions.BuilderallDataPointsVisibility(Visibility allDataPointsVisibility)Determines the visibility of all data points of the box plot.BoxPlotOptions.BuilderoutlierVisibility(String outlierVisibility)Determines the visibility of the outlier in a box plot.BoxPlotOptions.BuilderoutlierVisibility(Visibility outlierVisibility)Determines the visibility of the outlier in a box plot.default BoxPlotOptions.BuilderstyleOptions(Consumer<BoxPlotStyleOptions.Builder> styleOptions)The style options of the box plot.BoxPlotOptions.BuilderstyleOptions(BoxPlotStyleOptions styleOptions)The style options of the box plot.-
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
-
styleOptions
BoxPlotOptions.Builder styleOptions(BoxPlotStyleOptions styleOptions)
The style options of the box plot.
- Parameters:
styleOptions- The style options of the box plot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
styleOptions
default BoxPlotOptions.Builder styleOptions(Consumer<BoxPlotStyleOptions.Builder> styleOptions)
The style options of the box plot.
This is a convenience method that creates an instance of theBoxPlotStyleOptions.Builderavoiding the need to create one manually viaBoxPlotStyleOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostyleOptions(BoxPlotStyleOptions).- Parameters:
styleOptions- a consumer that will call methods onBoxPlotStyleOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
styleOptions(BoxPlotStyleOptions)
-
outlierVisibility
BoxPlotOptions.Builder outlierVisibility(String outlierVisibility)
Determines the visibility of the outlier in a box plot.
- Parameters:
outlierVisibility- Determines the visibility of the outlier in a box plot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
outlierVisibility
BoxPlotOptions.Builder outlierVisibility(Visibility outlierVisibility)
Determines the visibility of the outlier in a box plot.
- Parameters:
outlierVisibility- Determines the visibility of the outlier in a box plot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
allDataPointsVisibility
BoxPlotOptions.Builder allDataPointsVisibility(String allDataPointsVisibility)
Determines the visibility of all data points of the box plot.
- Parameters:
allDataPointsVisibility- Determines the visibility of all data points of the box plot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
allDataPointsVisibility
BoxPlotOptions.Builder allDataPointsVisibility(Visibility allDataPointsVisibility)
Determines the visibility of all data points of the box plot.
- Parameters:
allDataPointsVisibility- Determines the visibility of all data points of the box plot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Visibility,Visibility
-
-