public static enum PaymentSource.BankAccount.AccountType extends Enum<PaymentSource.BankAccount.AccountType>
Enum Constant and Description |
---|
_UNKNOWN |
BUSINESS_CHECKING |
CHECKING |
CURRENT |
SAVINGS |
Modifier and Type | Method and Description |
---|---|
static PaymentSource.BankAccount.AccountType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentSource.BankAccount.AccountType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentSource.BankAccount.AccountType CHECKING
public static final PaymentSource.BankAccount.AccountType SAVINGS
public static final PaymentSource.BankAccount.AccountType BUSINESS_CHECKING
public static final PaymentSource.BankAccount.AccountType CURRENT
public static final PaymentSource.BankAccount.AccountType _UNKNOWN
public static PaymentSource.BankAccount.AccountType[] values()
for (PaymentSource.BankAccount.AccountType c : PaymentSource.BankAccount.AccountType.values()) System.out.println(c);
public static PaymentSource.BankAccount.AccountType 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.