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