public enum ENormalBalanceType extends Enum<ENormalBalanceType>
Account Normal Balance Type - DEBIT, CREDIT.
| Enum Constant and Description |
|---|
CREDIT
If credit.
|
DEBIT
If debit.
|
| Modifier and Type | Method and Description |
|---|---|
static ENormalBalanceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ENormalBalanceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ENormalBalanceType DEBIT
If debit.
public static final ENormalBalanceType CREDIT
If credit.
public static ENormalBalanceType[] values()
for (ENormalBalanceType c : ENormalBalanceType.values()) System.out.println(c);
public static ENormalBalanceType 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.