public static enum Corpus.Status extends java.lang.Enum<Corpus.Status>
| Enum Constant and Description |
|---|
ANALYZED
The corpus has been successfully analyzed.
|
BEING_PROCESSED
The corpus is being processed.
|
UNDETERMINED
The corpus analysis has encountered a problem.
|
| Modifier and Type | Method and Description |
|---|---|
static Corpus.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Corpus.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="analyzed") public static final Corpus.Status ANALYZED
@SerializedName(value="being_processed") public static final Corpus.Status BEING_PROCESSED
@SerializedName(value="undetermined") public static final Corpus.Status UNDETERMINED
public static Corpus.Status[] values()
for (Corpus.Status c : Corpus.Status.values()) System.out.println(c);
public static Corpus.Status 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