public enum ReviewerStateInternal extends java.lang.Enum<ReviewerStateInternal>
Enum Constant and Description |
---|
CC
The reviewer was added to the change, but has not voted.
|
REMOVED
The user was previously a reviewer on the change, but was removed.
|
REVIEWER
The user has contributed at least one nonzero vote on the change.
|
Modifier and Type | Method and Description |
---|---|
com.google.gerrit.extensions.client.ReviewerState |
asReviewerState() |
static ReviewerStateInternal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReviewerStateInternal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReviewerStateInternal REVIEWER
public static final ReviewerStateInternal CC
public static final ReviewerStateInternal REMOVED
public static ReviewerStateInternal[] values()
for (ReviewerStateInternal c : ReviewerStateInternal.values()) System.out.println(c);
public static ReviewerStateInternal 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 com.google.gerrit.extensions.client.ReviewerState asReviewerState()