Package com.adyen.model.balanceplatform
Enum WalletProviderDeviceType.ValueEnum
- java.lang.Object
-
- java.lang.Enum<WalletProviderDeviceType.ValueEnum>
-
- com.adyen.model.balanceplatform.WalletProviderDeviceType.ValueEnum
-
- All Implemented Interfaces:
Serializable,Comparable<WalletProviderDeviceType.ValueEnum>
- Enclosing class:
- WalletProviderDeviceType
public static enum WalletProviderDeviceType.ValueEnum extends Enum<WalletProviderDeviceType.ValueEnum>
Gets or Sets value
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CARDMOBILE_PHONEOTHERPCTABLET_OR_EREADERUNKNOWNWATCH_OR_WRISTBANDWEARABLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WalletProviderDeviceType.ValueEnumfromValue(String value)StringgetValue()StringtoString()static WalletProviderDeviceType.ValueEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static WalletProviderDeviceType.ValueEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CARD
public static final WalletProviderDeviceType.ValueEnum CARD
-
MOBILE_PHONE
public static final WalletProviderDeviceType.ValueEnum MOBILE_PHONE
-
OTHER
public static final WalletProviderDeviceType.ValueEnum OTHER
-
PC
public static final WalletProviderDeviceType.ValueEnum PC
-
TABLET_OR_EREADER
public static final WalletProviderDeviceType.ValueEnum TABLET_OR_EREADER
-
UNKNOWN
public static final WalletProviderDeviceType.ValueEnum UNKNOWN
-
WATCH_OR_WRISTBAND
public static final WalletProviderDeviceType.ValueEnum WATCH_OR_WRISTBAND
-
WEARABLE
public static final WalletProviderDeviceType.ValueEnum WEARABLE
-
-
Method Detail
-
values
public static WalletProviderDeviceType.ValueEnum[] 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 (WalletProviderDeviceType.ValueEnum c : WalletProviderDeviceType.ValueEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WalletProviderDeviceType.ValueEnum 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<WalletProviderDeviceType.ValueEnum>
-
fromValue
public static WalletProviderDeviceType.ValueEnum fromValue(String value)
-
-