public enum AccountSubType extends java.lang.Enum<AccountSubType>
| Modifier and Type | Class and Description |
|---|---|
static class |
AccountSubType.Adapter |
| Modifier and Type | Method and Description |
|---|---|
static AccountSubType |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static AccountSubType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountSubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountSubType AUTO
public static final AccountSubType BROKERAGE
public static final AccountSubType CASH_ISA
public static final AccountSubType CASH_MANAGEMENT
public static final AccountSubType CD
public static final AccountSubType CHECKING
public static final AccountSubType COMMERCIAL
public static final AccountSubType CONSTRUCTION
public static final AccountSubType CONSUMER
public static final AccountSubType CREDIT
public static final AccountSubType CREDIT_CARD
public static final AccountSubType DEPOSITORY
public static final AccountSubType EDUCATION_SAVINGS_ACCOUNT
public static final AccountSubType GIC
public static final AccountSubType HEALTH_REIMBURSEMENT_ARRANGEMENT
public static final AccountSubType HOME
public static final AccountSubType HOME_EQUITY
public static final AccountSubType HSA
public static final AccountSubType IRA
public static final AccountSubType ISA
public static final AccountSubType KEOGH
public static final AccountSubType LIF
public static final AccountSubType LINE_OF_CREDIT
public static final AccountSubType LIRA
public static final AccountSubType LOAN
public static final AccountSubType LRIF
public static final AccountSubType LRSP
public static final AccountSubType MONEY_MARKET
public static final AccountSubType MORTGAGE
public static final AccountSubType MUTUAL_FUND
public static final AccountSubType NON_TAXABLE_BROKERAGE_ACCOUNT
public static final AccountSubType OTHER
public static final AccountSubType OVERDRAFT
public static final AccountSubType PAYPAL
public static final AccountSubType PENSION
public static final AccountSubType PREPAID
public static final AccountSubType PRIF
public static final AccountSubType PROFIT_SHARING_PLAN
public static final AccountSubType RDSP
public static final AccountSubType RECURRING
public static final AccountSubType RESP
public static final AccountSubType RETIREMENT
public static final AccountSubType REWARDS
public static final AccountSubType RLIF
public static final AccountSubType ROTH
public static final AccountSubType ROTH_401K
public static final AccountSubType RRIF
public static final AccountSubType RRSP
public static final AccountSubType SAFE_DEPOSIT
public static final AccountSubType SARSEP
public static final AccountSubType SAVINGS
public static final AccountSubType SEP_IRA
public static final AccountSubType SIMPLE_IRA
public static final AccountSubType SIPP
public static final AccountSubType STOCK_PLAN
public static final AccountSubType STUDENT
public static final AccountSubType TFSA
public static final AccountSubType THRIFT_SAVINGS_PLAN
public static final AccountSubType T_401A
public static final AccountSubType T_401K
public static final AccountSubType T_403B
public static final AccountSubType T_457B
public static final AccountSubType T_529
public static final AccountSubType UGMA
public static final AccountSubType UTMA
public static final AccountSubType VARIABLE_ANNUITY
public static AccountSubType[] values()
for (AccountSubType c : AccountSubType.values()) System.out.println(c);
public static AccountSubType 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 java.lang.String getValue()
public java.lang.String toString()
toString in class java.lang.Enum<AccountSubType>public static AccountSubType fromValue(java.lang.String value)