com.greenthrottle.gcs.api
Enum ControllerEvent.Action

java.lang.Object
  extended by java.lang.Enum<ControllerEvent.Action>
      extended by com.greenthrottle.gcs.api.ControllerEvent.Action
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ControllerEvent.Action>
Enclosing class:
ControllerEvent

public static enum ControllerEvent.Action
extends java.lang.Enum<ControllerEvent.Action>

Indicates type of action. Primarily used to indicate button down (ACTION_DOWN) and button up (ACTION_UP)


Enum Constant Summary
ACTION_DOWN
           
ACTION_UP
           
INVALID
           
RESERVED
           
STROBE_TO_OFF
           
STROBE_TO_ON
           
UPDATE
           
 
Method Summary
static ControllerEvent.Action makeFromInt(int codeValue)
           
static ControllerEvent.Action valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ControllerEvent.Action[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INVALID

public static final ControllerEvent.Action INVALID

UPDATE

public static final ControllerEvent.Action UPDATE

ACTION_DOWN

public static final ControllerEvent.Action ACTION_DOWN

ACTION_UP

public static final ControllerEvent.Action ACTION_UP

STROBE_TO_ON

public static final ControllerEvent.Action STROBE_TO_ON

STROBE_TO_OFF

public static final ControllerEvent.Action STROBE_TO_OFF

RESERVED

public static final ControllerEvent.Action RESERVED
Method Detail

values

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

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

valueOf

public static ControllerEvent.Action valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

makeFromInt

public static ControllerEvent.Action makeFromInt(int codeValue)