public enum State extends Enum<State>
| Enum Constant and Description |
|---|
BUSY
The media source is currently being generated, typically being transcoded.
|
DONE
The media source is generated, typically transcoded, and is ready.
|
FAILED
Transcoding of the media source failed.
|
INTERRUPTED
Transcoding of the media source is interrupted.
|
REMOVED |
REQUEST
The state is 'requested', which means that the media source does not yet have any data.
|
SOURCE
This means that the media source is an original.
|
SOURCE_UNSUPPORTED
Generation of other media from this media source is not supported by this system, the source
has an unknown or unsupported format or codec.
|
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static State |
get(int value) |
int |
getValue() |
static State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final State REQUEST
public static final State BUSY
public static final State DONE
public static final State SOURCE
public static final State SOURCE_UNSUPPORTED
public static final State UNDEFINED
public static final State REMOVED
public static final State FAILED
public static final State INTERRUPTED
public static State[] values()
for (State c : State.values()) System.out.println(c);
public static State 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 int getValue()
public static State get(int value)
MMBase 1.9-SNAPSHOT - ${javadoctimestamp}