public enum Action extends Enum<Action>
| Enum Constant and Description |
|---|
ACT_AS_DELEGATE |
DELETE_RECORD |
READ_BILL |
READ_RECORD |
UPDATE_RECORD |
WRITE_RECORD |
| Modifier and Type | Method and Description |
|---|---|
static Action |
getAction(String s) |
String |
toString() |
static Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Action READ_RECORD
public static final Action WRITE_RECORD
public static final Action UPDATE_RECORD
public static final Action DELETE_RECORD
public static final Action READ_BILL
public static final Action ACT_AS_DELEGATE
public static Action[] values()
for (Action c : Action.values()) System.out.println(c);
public static Action 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 nullpublic static Action getAction(String s) throws NotFoundException
NotFoundExceptionCopyright © 2014. All Rights Reserved.