public static enum Card.FundingType extends Enum<Card.FundingType>
| Enum Constant and Description |
|---|
_UNKNOWN |
CREDIT |
DEBIT |
NOT_APPLICABLE |
NOT_KNOWN |
PREPAID |
| Modifier and Type | Method and Description |
|---|---|
static Card.FundingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Card.FundingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Card.FundingType CREDIT
public static final Card.FundingType DEBIT
public static final Card.FundingType PREPAID
public static final Card.FundingType NOT_KNOWN
public static final Card.FundingType NOT_APPLICABLE
public static final Card.FundingType _UNKNOWN
public static Card.FundingType[] values()
for (Card.FundingType c : Card.FundingType.values()) System.out.println(c);
public static Card.FundingType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023 ChargeBee. All rights reserved.