chrriis.dj.nativeswing.swtimpl.components
Enum VLCInput.VLCMediaState

java.lang.Object
  extended by java.lang.Enum<VLCInput.VLCMediaState>
      extended by 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

Enum Constant Summary
BUFFERING
           
ERROR
           
IDLE_CLOSE
           
OPENING
           
PAUSED
           
PLAYING
           
STOPPING
           
 
Method Summary
static VLCInput.VLCMediaState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static VLCInput.VLCMediaState[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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