chrriis.dj.nativeswing.swtimpl.components
Enum DefaultVLCPlayerDecorator.VLCDecoratorComponentType

java.lang.Object
  extended by java.lang.Enum<DefaultVLCPlayerDecorator.VLCDecoratorComponentType>
      extended by chrriis.dj.nativeswing.swtimpl.components.DefaultVLCPlayerDecorator.VLCDecoratorComponentType
All Implemented Interfaces:
Serializable, Comparable<DefaultVLCPlayerDecorator.VLCDecoratorComponentType>
Enclosing class:
DefaultVLCPlayerDecorator

public static enum DefaultVLCPlayerDecorator.VLCDecoratorComponentType
extends Enum<DefaultVLCPlayerDecorator.VLCDecoratorComponentType>


Enum Constant Summary
PAUSE_BUTTON
           
PLAY_BUTTON
           
STOP_BUTTON
           
VOLUME_BUTTON_OFF
           
VOLUME_BUTTON_ON
           
 
Method Summary
static DefaultVLCPlayerDecorator.VLCDecoratorComponentType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DefaultVLCPlayerDecorator.VLCDecoratorComponentType[] 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

PLAY_BUTTON

public static final DefaultVLCPlayerDecorator.VLCDecoratorComponentType PLAY_BUTTON

PAUSE_BUTTON

public static final DefaultVLCPlayerDecorator.VLCDecoratorComponentType PAUSE_BUTTON

STOP_BUTTON

public static final DefaultVLCPlayerDecorator.VLCDecoratorComponentType STOP_BUTTON

VOLUME_BUTTON_ON

public static final DefaultVLCPlayerDecorator.VLCDecoratorComponentType VOLUME_BUTTON_ON

VOLUME_BUTTON_OFF

public static final DefaultVLCPlayerDecorator.VLCDecoratorComponentType VOLUME_BUTTON_OFF
Method Detail

values

public static DefaultVLCPlayerDecorator.VLCDecoratorComponentType[] 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 (DefaultVLCPlayerDecorator.VLCDecoratorComponentType c : DefaultVLCPlayerDecorator.VLCDecoratorComponentType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DefaultVLCPlayerDecorator.VLCDecoratorComponentType 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