chrriis.dj.nativeswing.swtimpl.components
Enum VLCInput.VLCMediaState
java.lang.Object
java.lang.Enum<VLCInput.VLCMediaState>
chrriis.dj.nativeswing.swtimpl.components.VLCInput.VLCMediaState
- All Implemented Interfaces:
- Serializable, Comparable<VLCInput.VLCMediaState>
- Enclosing class:
- VLCInput
public static enum VLCInput.VLCMediaState
- extends Enum<VLCInput.VLCMediaState>
The state of a media.
- Author:
- Christopher Deckers
IDLE_CLOSE
public static final VLCInput.VLCMediaState IDLE_CLOSE
OPENING
public static final VLCInput.VLCMediaState OPENING
BUFFERING
public static final VLCInput.VLCMediaState BUFFERING
PLAYING
public static final VLCInput.VLCMediaState PLAYING
PAUSED
public static final VLCInput.VLCMediaState PAUSED
STOPPING
public static final VLCInput.VLCMediaState STOPPING
ERROR
public static final VLCInput.VLCMediaState ERROR
values
public static VLCInput.VLCMediaState[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (VLCInput.VLCMediaState c : VLCInput.VLCMediaState.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static VLCInput.VLCMediaState valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null