Interface CustomColor.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomColor.Builder,CustomColor>,SdkBuilder<CustomColor.Builder,CustomColor>,SdkPojo
- Enclosing class:
- CustomColor
public static interface CustomColor.Builder extends SdkPojo, CopyableBuilder<CustomColor.Builder,CustomColor>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomColor.Buildercolor(String color)The color that is applied to the data value.CustomColor.BuilderfieldValue(String fieldValue)The data value that the color is applied to.CustomColor.BuilderspecialValue(String specialValue)The value of a special data value.CustomColor.BuilderspecialValue(SpecialValue specialValue)The value of a special data value.-
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
-
fieldValue
CustomColor.Builder fieldValue(String fieldValue)
The data value that the color is applied to.
- Parameters:
fieldValue- The data value that the color is applied to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
color
CustomColor.Builder color(String color)
The color that is applied to the data value.
- Parameters:
color- The color that is applied to the data value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
specialValue
CustomColor.Builder specialValue(String specialValue)
The value of a special data value.
- Parameters:
specialValue- The value of a special data value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SpecialValue,SpecialValue
-
specialValue
CustomColor.Builder specialValue(SpecialValue specialValue)
The value of a special data value.
- Parameters:
specialValue- The value of a special data value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SpecialValue,SpecialValue
-
-