public enum EBankEntryStatus extends Enum<EBankEntryStatus>
Bank Entry Status.
| Enum Constant and Description |
|---|
ACCEPTED
0 ACCEPTED.
|
OTHER
3 OTHER.
|
PENDING
2 PENDING.
|
VOIDED
1 VOIDED.
|
| Modifier and Type | Method and Description |
|---|---|
static EBankEntryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EBankEntryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EBankEntryStatus ACCEPTED
0 ACCEPTED.
public static final EBankEntryStatus VOIDED
1 VOIDED.
public static final EBankEntryStatus PENDING
2 PENDING.
public static final EBankEntryStatus OTHER
3 OTHER.
public static EBankEntryStatus[] values()
for (EBankEntryStatus c : EBankEntryStatus.values()) System.out.println(c);
public static EBankEntryStatus 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.