| Enum Constant and Description |
|---|
LED_GOOD_READ
Good read LED
|
LED_GREEN_SPOT
Green Spot LED
|
LED_NOTIFICATION
General notification led
|
| Modifier and Type | Method and Description |
|---|---|
static Led |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Led[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Led LED_GOOD_READ
public static final Led LED_GREEN_SPOT
public static final Led LED_NOTIFICATION
public static Led[] values()
for (Led c : Led.values()) System.out.println(c);
public static Led valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null