js.dev.cam.sbig
Enum LED_STATE

java.lang.Object
  extended by java.lang.Enum<LED_STATE>
      extended by js.dev.cam.sbig.LED_STATE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LED_STATE>

public enum LED_STATE
extends java.lang.Enum<LED_STATE>


Enum Constant Summary
LED_BLINK_HIGH
           
LED_BLINK_LOW
           
LED_OFF
           
LED_ON
           
 
Method Summary
 int getLedState()
           
static LED_STATE getLedState(int value)
           
static LED_STATE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LED_STATE[] 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

LED_OFF

public static final LED_STATE LED_OFF

LED_ON

public static final LED_STATE LED_ON

LED_BLINK_LOW

public static final LED_STATE LED_BLINK_LOW

LED_BLINK_HIGH

public static final LED_STATE LED_BLINK_HIGH
Method Detail

values

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

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

valueOf

public static LED_STATE 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

getLedState

public int getLedState()
Returns:
the ledState.

getLedState

public static final LED_STATE getLedState(int value)
Returns:
the ledState.