public static enum RecognitionJob.Status extends java.lang.Enum<RecognitionJob.Status>
Enum Constant and Description |
---|
COMPLETED
completed.
|
FAILED
failed.
|
PROCESSING
processing.
|
WAITING
waiting.
|
Modifier and Type | Method and Description |
---|---|
static RecognitionJob.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecognitionJob.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="completed") public static final RecognitionJob.Status COMPLETED
@SerializedName(value="failed") public static final RecognitionJob.Status FAILED
@SerializedName(value="processing") public static final RecognitionJob.Status PROCESSING
@SerializedName(value="waiting") public static final RecognitionJob.Status WAITING
public static RecognitionJob.Status[] values()
for (RecognitionJob.Status c : RecognitionJob.Status.values()) System.out.println(c);
public static RecognitionJob.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