public final class LabelCustomization extends Customization
Created by Ran Haveshush on 24/08/2018.
| Constructor and Description |
|---|
LabelCustomization() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getHeadingTextColor() |
java.lang.String |
getHeadingTextFontName() |
int |
getHeadingTextFontSize() |
java.lang.String |
getInputLabelTextColor() |
java.lang.String |
getInputLabelTextFontName() |
int |
getInputLabelTextFontSize() |
void |
setHeadingTextColor(java.lang.String hexColorCode)
Sets the heading text color.
|
void |
setHeadingTextFontName(java.lang.String fontName)
Sets the heading text font type.
|
void |
setHeadingTextFontSize(int fontSize)
Sets the heading text font size.
|
void |
setInputLabelTextColor(java.lang.String hexColorCode)
Sets the input label text color.
|
void |
setInputLabelTextFontName(java.lang.String fontName)
Sets the input label text font type.
|
void |
setInputLabelTextFontSize(int fontSize)
Sets the input label text font size.
|
getTextColor, getTextFontName, getTextFontSize, parseHexColorCode, parseTypeface, setTextColor, setTextFontName, setTextFontSizepublic java.lang.String getHeadingTextColor()
public void setHeadingTextColor(java.lang.String hexColorCode)
throws InvalidInputException
hexColorCode - The color code in Hex format. For example "#999999".InvalidInputException - This exception shall be thrown if an input parameter is invalid.public java.lang.String getHeadingTextFontName()
public void setHeadingTextFontName(java.lang.String fontName)
throws InvalidInputException
fontName - The heading text font type name.InvalidInputException - This exception shall be thrown if an input parameter is invalid.public int getHeadingTextFontSize()
public void setHeadingTextFontSize(int fontSize)
throws InvalidInputException
fontSize - The heading text font size.InvalidInputException - This exception shall be thrown if an input parameter is invalid.public java.lang.String getInputLabelTextColor()
public void setInputLabelTextColor(java.lang.String hexColorCode)
throws InvalidInputException
hexColorCode - The color code in Hex format. For example "#999999".InvalidInputException - This exception shall be thrown if an input parameter is invalid.public java.lang.String getInputLabelTextFontName()
public void setInputLabelTextFontName(java.lang.String fontName)
throws InvalidInputException
fontName - The input label text font type name.InvalidInputException - This exception shall be thrown if an input parameter is invalid.public int getInputLabelTextFontSize()
public void setInputLabelTextFontSize(int fontSize)
throws InvalidInputException
fontSize - The input label text font size.InvalidInputException - This exception shall be thrown if an input parameter is invalid.