public static enum ReviewData.State extends java.lang.Enum<ReviewData.State>
Enum Constant and Description |
---|
Approval |
Closed |
ClosedSnippet |
Dead |
Draft |
OpenSnippet |
Rejected |
Review |
Summarize |
Unknown |
Modifier and Type | Method and Description |
---|---|
static ReviewData.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReviewData.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReviewData.State Draft
public static final ReviewData.State Approval
public static final ReviewData.State Review
public static final ReviewData.State Summarize
public static final ReviewData.State Closed
public static final ReviewData.State Dead
public static final ReviewData.State Rejected
public static final ReviewData.State Unknown
public static final ReviewData.State OpenSnippet
public static final ReviewData.State ClosedSnippet
public static ReviewData.State[] values()
for (ReviewData.State c : ReviewData.State.values()) System.out.println(c);
public static ReviewData.State 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 null