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