public enum TranscriptionStatus extends java.lang.Enum<TranscriptionStatus>
| Enum Constant and Description |
|---|
COMPLETED |
FAILED |
IN_PROGRESS |
| Modifier and Type | Method and Description |
|---|---|
static TranscriptionStatus |
deserializeXML(java.lang.String string) |
java.lang.String |
toString() |
static TranscriptionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TranscriptionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TranscriptionStatus IN_PROGRESS
public static final TranscriptionStatus COMPLETED
public static final TranscriptionStatus FAILED
public static TranscriptionStatus[] values()
for (TranscriptionStatus c : TranscriptionStatus.values()) System.out.println(c);
public static TranscriptionStatus 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 java.lang.String toString()
toString in class java.lang.Enum<TranscriptionStatus>public static TranscriptionStatus deserializeXML(java.lang.String string) throws JiBXParseException
JiBXParseException