public enum EDueMethod extends Enum<EDueMethod>
Account Due Method ACCRUAL/CASH.
| Enum Constant and Description |
|---|
ACCRUAL
Due when recieve/send document.
|
CASH
Due when recieve/send money.
|
| Modifier and Type | Method and Description |
|---|---|
static EDueMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EDueMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EDueMethod ACCRUAL
Due when recieve/send document.
public static final EDueMethod CASH
Due when recieve/send money.
public static EDueMethod[] values()
for (EDueMethod c : EDueMethod.values()) System.out.println(c);
public static EDueMethod 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.