public enum WalletType extends java.lang.Enum<WalletType>
| Enum Constant and Description |
|---|
BCMCMOBILE |
MASTERPASS |
MERCHANT_WALLET |
PAYLIB |
VISACHECKOUT |
| Modifier and Type | Method and Description |
|---|---|
static WalletType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WalletType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WalletType BCMCMOBILE
public static final WalletType MASTERPASS
public static final WalletType MERCHANT_WALLET
public static final WalletType PAYLIB
public static final WalletType VISACHECKOUT
public static WalletType[] values()
for (WalletType c : WalletType.values()) System.out.println(c);
public static WalletType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null