public static enum Transcription.Status extends Enum<Transcription.Status>
| Enum Constant and Description |
|---|
COMPLETED |
FAILED |
IN_PROGRESS |
| Modifier and Type | Method and Description |
|---|---|
static Transcription.Status |
getStatusValue(String text) |
String |
toString() |
static Transcription.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transcription.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transcription.Status IN_PROGRESS
public static final Transcription.Status COMPLETED
public static final Transcription.Status FAILED
public static Transcription.Status[] values()
for (Transcription.Status c : Transcription.Status.values()) System.out.println(c);
public static Transcription.Status valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static Transcription.Status getStatusValue(String text)
public String toString()
toString in class Enum<Transcription.Status>Copyright © 2017. All Rights Reserved.