public static enum ReviewService.Action extends java.lang.Enum<ReviewService.Action>
Enum Constant and Description |
---|
Abandon |
Approve |
Close |
Recover |
Reject |
Reopen |
Submit |
Summarize |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getActionString() |
static ReviewService.Action |
getByActionString(java.lang.String actionString) |
static ReviewService.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReviewService.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReviewService.Action Approve
public static final ReviewService.Action Abandon
public static final ReviewService.Action Submit
public static final ReviewService.Action Reject
public static final ReviewService.Action Summarize
public static final ReviewService.Action Close
public static final ReviewService.Action Reopen
public static final ReviewService.Action Recover
public static ReviewService.Action[] values()
for (ReviewService.Action c : ReviewService.Action.values()) System.out.println(c);
public static ReviewService.Action valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getActionString()
public static ReviewService.Action getByActionString(java.lang.String actionString)