public static enum ReviewStatus.ReviewerType extends java.lang.Enum<ReviewStatus.ReviewerType>
| Enum Constant and Description |
|---|
MANAGING |
SCIENTIFIC |
SUBSTITUTE |
| Modifier and Type | Method and Description |
|---|---|
static ReviewStatus.ReviewerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReviewStatus.ReviewerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReviewStatus.ReviewerType SCIENTIFIC
public static final ReviewStatus.ReviewerType SUBSTITUTE
public static final ReviewStatus.ReviewerType MANAGING
public static ReviewStatus.ReviewerType[] values()
for (ReviewStatus.ReviewerType c : ReviewStatus.ReviewerType.values()) System.out.println(c);
public static ReviewStatus.ReviewerType 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