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