public enum LifxNotifierState extends Enum<LifxNotifierState>
| Enum Constant and Description |
|---|
FAILED |
IN_PROGRESS |
SUCCESSFUL |
| Modifier and Type | Method and Description |
|---|---|
static LifxNotifierState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifxNotifierState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifxNotifierState SUCCESSFUL
public static final LifxNotifierState FAILED
public static final LifxNotifierState IN_PROGRESS
public static LifxNotifierState[] values()
for (LifxNotifierState c : LifxNotifierState.values()) System.out.println(c);
public static LifxNotifierState 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 nullCopyright © 2016. All rights reserved.