@Deprecated public enum BankAccountType extends java.lang.Enum<BankAccountType> implements java.io.Serializable
| Enum Constant and Description |
|---|
BUSINESSCHECKING
Deprecated.
|
CHECKING
Deprecated.
|
SAVINGS
Deprecated.
|
UNKNOWN
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static BankAccountType |
findByValue(java.lang.String value)
Deprecated.
|
java.lang.String |
getValue()
Deprecated.
|
static BankAccountType |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static BankAccountType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankAccountType CHECKING
public static final BankAccountType BUSINESSCHECKING
public static final BankAccountType SAVINGS
public static final BankAccountType UNKNOWN
public static BankAccountType[] values()
for (BankAccountType c : BankAccountType.values()) System.out.println(c);
public static BankAccountType 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 nullpublic static BankAccountType findByValue(java.lang.String value)
public java.lang.String getValue()
Copyright © 2018. All Rights Reserved.