public static enum State.Effect extends Enum<State.Effect>
Enum Constant and Description |
---|
COLORLOOP
Cycle through all hues with current saturation and brightness
|
NONE
No effect
|
Modifier and Type | Method and Description |
---|---|
static State.Effect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static State.Effect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final State.Effect NONE
public static final State.Effect COLORLOOP
public static State.Effect[] values()
for (State.Effect c : State.Effect.values()) System.out.println(c);
public static State.Effect 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