public enum KinectLEDMode extends Enum<KinectLEDMode>
Enum Constant and Description |
---|
LED_BLINK_GREEN
The LED is blinking green
|
LED_BLINK_RED_YELLOW
The LED is yellow
|
LED_GREEN
The LED is green
|
LED_OFF
The LED is off
|
LED_RED
The LED is red
|
LED_YELLOW
The LED is yellow
|
Modifier and Type | Method and Description |
---|---|
static KinectLEDMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KinectLEDMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KinectLEDMode LED_OFF
public static final KinectLEDMode LED_GREEN
public static final KinectLEDMode LED_RED
public static final KinectLEDMode LED_YELLOW
public static final KinectLEDMode LED_BLINK_GREEN
public static final KinectLEDMode LED_BLINK_RED_YELLOW
public static KinectLEDMode[] values()
for (KinectLEDMode c : KinectLEDMode.values()) System.out.println(c);
public static KinectLEDMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null