public enum AccountTypeEnumeration extends Enum<AccountTypeEnumeration>
Java class for AccountTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AccountTypeEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Default"/>
<enumeration value="Savings"/>
<enumeration value="Checking"/>
<enumeration value="CreditCard"/>
<enumeration value="Universal"/>
<enumeration value="Investment"/>
<enumeration value="CardTotals"/>
<enumeration value="EpurseCard"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CARD_TOTALS
Card totals
|
CHECKING
Checking account
|
CREDIT_CARD
Credit card account
|
DEFAULT
Default account
|
EPURSE_CARD
e-Purse card account
|
INVESTMENT
Investment account
|
SAVINGS
Savings account
|
UNIVERSAL
Universal account
|
| Modifier and Type | Method and Description |
|---|---|
static AccountTypeEnumeration |
fromValue(String v) |
String |
value() |
static AccountTypeEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountTypeEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountTypeEnumeration DEFAULT
public static final AccountTypeEnumeration SAVINGS
public static final AccountTypeEnumeration CHECKING
public static final AccountTypeEnumeration CREDIT_CARD
public static final AccountTypeEnumeration UNIVERSAL
public static final AccountTypeEnumeration INVESTMENT
public static final AccountTypeEnumeration CARD_TOTALS
public static final AccountTypeEnumeration EPURSE_CARD
public static AccountTypeEnumeration[] values()
for (AccountTypeEnumeration c : AccountTypeEnumeration.values()) System.out.println(c);
public static AccountTypeEnumeration 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 nullpublic String value()
public static AccountTypeEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.