Interface FontSize.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FontSize.Builder,FontSize>,SdkBuilder<FontSize.Builder,FontSize>,SdkPojo
- Enclosing class:
- FontSize
@Mutable @NotThreadSafe public static interface FontSize.Builder extends SdkPojo, CopyableBuilder<FontSize.Builder,FontSize>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FontSize.Builderabsolute(String absolute)The font size that you want to use in px.FontSize.Builderrelative(String relative)The lexical name for the text size, proportional to its surrounding context.FontSize.Builderrelative(RelativeFontSize relative)The lexical name for the text size, proportional to its surrounding context.-
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
-
relative
FontSize.Builder relative(String relative)
The lexical name for the text size, proportional to its surrounding context.
- Parameters:
relative- The lexical name for the text size, proportional to its surrounding context.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RelativeFontSize,RelativeFontSize
-
relative
FontSize.Builder relative(RelativeFontSize relative)
The lexical name for the text size, proportional to its surrounding context.
- Parameters:
relative- The lexical name for the text size, proportional to its surrounding context.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RelativeFontSize,RelativeFontSize
-
absolute
FontSize.Builder absolute(String absolute)
The font size that you want to use in px.
- Parameters:
absolute- The font size that you want to use in px.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-