| Enum Constant and Description |
|---|
CHARGE |
CREDIT |
DEBIT |
DEFERRED_DEBIT |
PREPAID |
| Modifier and Type | Method and Description |
|---|---|
static CardType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CardType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Credit",
alternate={"CREDIT","credit"})
public static final CardType CREDIT
@SerializedName(value="Debit",
alternate={"DEBIT","debit"})
public static final CardType DEBIT
@SerializedName(value="Prepaid",
alternate={"PREPAID","prepaid"})
public static final CardType PREPAID
@SerializedName(value="Charge",
alternate={"CHARGE","charge"})
public static final CardType CHARGE
@SerializedName(value="Deferred Debit",
alternate={"DEFERRED DEBIT","deferred_debit"})
public static final CardType DEFERRED_DEBIT
public static CardType[] values()
for (CardType c : CardType.values()) System.out.println(c);
public static CardType 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