public enum SourcePaymentType extends java.lang.Enum<SourcePaymentType>
Enum Constant and Description |
---|
CREDIT_CARD
Credit card source payment type.
|
DEBIT_CARD
Debit card source payment type.
|
PREPAID_CARD
Prepaid card source payment type.
|
PREPAID_WALLET
Prepaid wallet source payment type.
|
Modifier and Type | Method and Description |
---|---|
static SourcePaymentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SourcePaymentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="DEBIT_CARD") public static final SourcePaymentType DEBIT_CARD
@SerializedName(value="CREDIT_CARD") public static final SourcePaymentType CREDIT_CARD
@SerializedName(value="PREPAID_CARD") public static final SourcePaymentType PREPAID_CARD
@SerializedName(value="PREPAID_WALLET") public static final SourcePaymentType PREPAID_WALLET
public static SourcePaymentType[] values()
for (SourcePaymentType c : SourcePaymentType.values()) System.out.println(c);
public static SourcePaymentType 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