public static enum VideoInterface.VideoState extends java.lang.Enum<VideoInterface.VideoState>
Enum Constant and Description |
---|
EMPTY
No State.
|
FINISHED
State Finished.
|
PAUSED
State paused.
|
RUNNING
State Running.
|
STOPPED
State Stopped.
|
Modifier and Type | Method and Description |
---|---|
static VideoInterface.VideoState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VideoInterface.VideoState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoInterface.VideoState EMPTY
public static final VideoInterface.VideoState STOPPED
public static final VideoInterface.VideoState FINISHED
public static final VideoInterface.VideoState PAUSED
public static final VideoInterface.VideoState RUNNING
public static VideoInterface.VideoState[] values()
for (VideoInterface.VideoState c : VideoInterface.VideoState.values()) System.out.println(c);
public static VideoInterface.VideoState 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