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