public enum ManualReviewStatus extends java.lang.Enum<ManualReviewStatus>
| Modifier and Type | Method and Description |
|---|---|
static ManualReviewStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ManualReviewStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="") public static final ManualReviewStatus EMPTY
@SerializedName(value="started") public static final ManualReviewStatus STARTED
@SerializedName(value="performed") public static final ManualReviewStatus PERFORMED
public static ManualReviewStatus[] values()
for (ManualReviewStatus c : ManualReviewStatus.values()) System.out.println(c);
public static ManualReviewStatus 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