public static enum ActionResult.StatusFlag extends Enum<ActionResult.StatusFlag>
| Enum Constant and Description |
|---|
OBJECT_DELETED |
OBJECT_MODIFIED |
OBJECT_PERSISTED |
| Modifier and Type | Method and Description |
|---|---|
static ActionResult.StatusFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionResult.StatusFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionResult.StatusFlag OBJECT_MODIFIED
public static final ActionResult.StatusFlag OBJECT_PERSISTED
public static final ActionResult.StatusFlag OBJECT_DELETED
public static ActionResult.StatusFlag[] values()
for (ActionResult.StatusFlag c : ActionResult.StatusFlag.values()) System.out.println(c);
public static ActionResult.StatusFlag 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 © 2018. All rights reserved.