Package com.adyen.threeds2.customization
Class LabelCustomization
-
- All Implemented Interfaces:
-
java.io.Serializable
public final class LabelCustomization extends Customization
This class provides methods for the App to pass label customization parameters to the 3DS SDK.
Created by Ran Haveshush on 24/08/2018.
-
-
Constructor Summary
Constructors Constructor Description LabelCustomization()
-
Method Summary
Modifier and Type Method Description StringgetHeadingTextColor()voidsetHeadingTextColor(String hexColorCode)Sets the heading text color. StringgetHeadingTextFontName()voidsetHeadingTextFontName(String fontName)Sets the heading text font type. intgetHeadingTextFontSize()voidsetHeadingTextFontSize(int fontSize)Sets the heading text font size. StringgetInputLabelTextColor()voidsetInputLabelTextColor(String hexColorCode)Sets the input label text color. StringgetInputLabelTextFontName()voidsetInputLabelTextFontName(String fontName)Sets the input label text font type. intgetInputLabelTextFontSize()voidsetInputLabelTextFontSize(int fontSize)Sets the input label text font size. -
Methods inherited from class com.adyen.threeds2.customization.Customization
getTextColor, getTextFontName, getTextFontSize, parseHexColorCode, parseTypeface, setTextColor, setTextFontName, setTextFontSize -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getHeadingTextColor
String getHeadingTextColor()
- Returns:
The color code of the heading text.
-
setHeadingTextColor
void setHeadingTextColor(String hexColorCode)
Sets the heading text color.
- Parameters:
hexColorCode- The color code in Hex format.
-
getHeadingTextFontName
String getHeadingTextFontName()
- Returns:
The heading text font type name.
-
setHeadingTextFontName
void setHeadingTextFontName(String fontName)
Sets the heading text font type.
- Parameters:
fontName- The heading text font type name.
-
getHeadingTextFontSize
int getHeadingTextFontSize()
- Returns:
The heading text font size.
-
setHeadingTextFontSize
void setHeadingTextFontSize(int fontSize)
Sets the heading text font size.
- Parameters:
fontSize- The heading text font size.
-
getInputLabelTextColor
String getInputLabelTextColor()
- Returns:
The color code of the input label text.
-
setInputLabelTextColor
void setInputLabelTextColor(String hexColorCode)
Sets the input label text color.
- Parameters:
hexColorCode- The color code in Hex format.
-
getInputLabelTextFontName
String getInputLabelTextFontName()
- Returns:
The input label text font type name.
-
setInputLabelTextFontName
void setInputLabelTextFontName(String fontName)
Sets the input label text font type.
- Parameters:
fontName- The input label text font type name.
-
getInputLabelTextFontSize
int getInputLabelTextFontSize()
- Returns:
The input label text font size.
-
setInputLabelTextFontSize
void setInputLabelTextFontSize(int fontSize)
Sets the input label text font size.
- Parameters:
fontSize- The input label text font size.
-
-
-
-