public static enum RegionEvent.Type extends java.lang.Enum<RegionEvent.Type>
| Enum Constant and Description |
|---|
REGION_ADDED
Signifies that a new region was created.
|
REGION_MEMBERSHIP_CHANGED
Signifies that a region device membership has changed.
|
REGION_REMOVED
Signifies that a region was removed.
|
REGION_UPDATED
Signifies that a region was updated.
|
| Modifier and Type | Method and Description |
|---|---|
static RegionEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RegionEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegionEvent.Type REGION_ADDED
public static final RegionEvent.Type REGION_REMOVED
public static final RegionEvent.Type REGION_UPDATED
public static final RegionEvent.Type REGION_MEMBERSHIP_CHANGED
public static RegionEvent.Type[] values()
for (RegionEvent.Type c : RegionEvent.Type.values()) System.out.println(c);
public static RegionEvent.Type 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