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