Package com.adyen.model.checkout
Enum DeviceRenderOptions.SdkUiTypeEnum
- java.lang.Object
-
- java.lang.Enum<DeviceRenderOptions.SdkUiTypeEnum>
-
- com.adyen.model.checkout.DeviceRenderOptions.SdkUiTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<DeviceRenderOptions.SdkUiTypeEnum>
- Enclosing class:
- DeviceRenderOptions
public static enum DeviceRenderOptions.SdkUiTypeEnum extends Enum<DeviceRenderOptions.SdkUiTypeEnum>
Gets or Sets sdkUiType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MULTISELECTOTHERHTMLOUTOFBANDSINGLESELECTTEXT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeviceRenderOptions.SdkUiTypeEnumfromValue(String value)StringgetValue()StringtoString()static DeviceRenderOptions.SdkUiTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static DeviceRenderOptions.SdkUiTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MULTISELECT
public static final DeviceRenderOptions.SdkUiTypeEnum MULTISELECT
-
OTHERHTML
public static final DeviceRenderOptions.SdkUiTypeEnum OTHERHTML
-
OUTOFBAND
public static final DeviceRenderOptions.SdkUiTypeEnum OUTOFBAND
-
SINGLESELECT
public static final DeviceRenderOptions.SdkUiTypeEnum SINGLESELECT
-
TEXT
public static final DeviceRenderOptions.SdkUiTypeEnum TEXT
-
-
Method Detail
-
values
public static DeviceRenderOptions.SdkUiTypeEnum[] 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 (DeviceRenderOptions.SdkUiTypeEnum c : DeviceRenderOptions.SdkUiTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceRenderOptions.SdkUiTypeEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<DeviceRenderOptions.SdkUiTypeEnum>
-
fromValue
public static DeviceRenderOptions.SdkUiTypeEnum fromValue(String value)
-
-