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