Enum UiCustomization.UiCustomizationType
- java.lang.Object
-
- java.lang.Enum<UiCustomization.UiCustomizationType>
-
- com.netcetera.threeds.sdk.api.ui.logic.UiCustomization.UiCustomizationType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UiCustomization.UiCustomizationType>
- Enclosing class:
- UiCustomization
public static enum UiCustomization.UiCustomizationType extends java.lang.Enum<UiCustomization.UiCustomizationType>
Defines the UI Customization type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DARKCustomization for SDK UI in dark mode.DEFAULTCustomization for SDK UI in default mode.MONOCHROMECustomization for SDK UI in monochrome mode.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UiCustomization.UiCustomizationTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UiCustomization.UiCustomizationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final UiCustomization.UiCustomizationType DEFAULT
Customization for SDK UI in default mode.
-
DARK
public static final UiCustomization.UiCustomizationType DARK
Customization for SDK UI in dark mode.
-
MONOCHROME
public static final UiCustomization.UiCustomizationType MONOCHROME
Customization for SDK UI in monochrome mode.
-
-
Method Detail
-
values
public static UiCustomization.UiCustomizationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UiCustomization.UiCustomizationType c : UiCustomization.UiCustomizationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UiCustomization.UiCustomizationType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-