public enum EAccountType extends Enum<EAccountType>
Account Type - ASSET/LIABILITY/ OWNERS_EQUITY/GROSS_INCOME_REVENUE/GROSS_INCOME_EXPENSE.
| Enum Constant and Description |
|---|
ASSET
If asset.
|
GROSS_INCOME_EXPENSE
If expense of gross income.
|
GROSS_INCOME_REVENUE
If revenue of gross income.
|
LIABILITY
If liability.
|
OWNERS_EQUITY
If Owner's equity.
|
| Modifier and Type | Method and Description |
|---|---|
static EAccountType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EAccountType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EAccountType ASSET
If asset.
public static final EAccountType LIABILITY
If liability.
public static final EAccountType OWNERS_EQUITY
If Owner's equity.
public static final EAccountType GROSS_INCOME_REVENUE
If revenue of gross income.
public static final EAccountType GROSS_INCOME_EXPENSE
If expense of gross income.
public static EAccountType[] values()
for (EAccountType c : EAccountType.values()) System.out.println(c);
public static EAccountType 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 © 2016–2018. All rights reserved.