public static enum FundingInstrument.Method extends java.lang.Enum<FundingInstrument.Method>
| Enum Constant and Description |
|---|
BOLETO |
CREDIT_CARD |
ONLINE_BANK_DEBIT |
| Modifier and Type | Method and Description |
|---|---|
static FundingInstrument.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FundingInstrument.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FundingInstrument.Method CREDIT_CARD
public static final FundingInstrument.Method BOLETO
public static final FundingInstrument.Method ONLINE_BANK_DEBIT
public static FundingInstrument.Method[] values()
for (FundingInstrument.Method c : FundingInstrument.Method.values()) System.out.println(c);
public static FundingInstrument.Method 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