Interface DataColorPalette.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataColorPalette.Builder,DataColorPalette>,SdkBuilder<DataColorPalette.Builder,DataColorPalette>,SdkPojo
- Enclosing class:
- DataColorPalette
@Mutable @NotThreadSafe public static interface DataColorPalette.Builder extends SdkPojo, CopyableBuilder<DataColorPalette.Builder,DataColorPalette>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataColorPalette.Buildercolors(String... colors)The hexadecimal codes for the colors.DataColorPalette.Buildercolors(Collection<String> colors)The hexadecimal codes for the colors.DataColorPalette.BuilderemptyFillColor(String emptyFillColor)The hexadecimal code of a color that applies to charts where a lack of data is highlighted.DataColorPalette.BuilderminMaxGradient(String... minMaxGradient)The minimum and maximum hexadecimal codes that describe a color gradient.DataColorPalette.BuilderminMaxGradient(Collection<String> minMaxGradient)The minimum and maximum hexadecimal codes that describe a color gradient.-
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
-
colors
DataColorPalette.Builder colors(Collection<String> colors)
The hexadecimal codes for the colors.
- Parameters:
colors- The hexadecimal codes for the colors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
colors
DataColorPalette.Builder colors(String... colors)
The hexadecimal codes for the colors.
- Parameters:
colors- The hexadecimal codes for the colors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minMaxGradient
DataColorPalette.Builder minMaxGradient(Collection<String> minMaxGradient)
The minimum and maximum hexadecimal codes that describe a color gradient.
- Parameters:
minMaxGradient- The minimum and maximum hexadecimal codes that describe a color gradient.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minMaxGradient
DataColorPalette.Builder minMaxGradient(String... minMaxGradient)
The minimum and maximum hexadecimal codes that describe a color gradient.
- Parameters:
minMaxGradient- The minimum and maximum hexadecimal codes that describe a color gradient.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
emptyFillColor
DataColorPalette.Builder emptyFillColor(String emptyFillColor)
The hexadecimal code of a color that applies to charts where a lack of data is highlighted.
- Parameters:
emptyFillColor- The hexadecimal code of a color that applies to charts where a lack of data is highlighted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-