public enum CardWalletType extends java.lang.Enum<CardWalletType>
| Modifier and Type | Method and Description |
|---|---|
static CardWalletType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CardWalletType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="applepay") public static final CardWalletType APPLEPAY
@SerializedName(value="googlepay") public static final CardWalletType GOOGLEPAY
public static CardWalletType[] values()
for (CardWalletType c : CardWalletType.values()) System.out.println(c);
public static CardWalletType 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