public enum StateChangeCategory extends java.lang.Enum<StateChangeCategory>
| Enum Constant and Description |
|---|
Assignment
Device assignment
|
Presence
Device presence
|
Registration
Device registation
|
| Modifier and Type | Method and Description |
|---|---|
static StateChangeCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StateChangeCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateChangeCategory Assignment
public static final StateChangeCategory Presence
public static final StateChangeCategory Registration
public static StateChangeCategory[] values()
for (StateChangeCategory c : StateChangeCategory.values()) System.out.println(c);
public static StateChangeCategory 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