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