public static enum WatchCallback.WatchEventType extends java.lang.Enum<WatchCallback.WatchEventType>
Enum Constant and Description |
---|
NodeChildrenChanged |
NodeCreated |
NodeDataChanged |
NodeDeleted |
None |
Modifier and Type | Method and Description |
---|---|
static WatchCallback.WatchEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WatchCallback.WatchEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WatchCallback.WatchEventType None
public static final WatchCallback.WatchEventType NodeCreated
public static final WatchCallback.WatchEventType NodeDeleted
public static final WatchCallback.WatchEventType NodeDataChanged
public static final WatchCallback.WatchEventType NodeChildrenChanged
public static WatchCallback.WatchEventType[] values()
for (WatchCallback.WatchEventType c : WatchCallback.WatchEventType.values()) System.out.println(c);
public static WatchCallback.WatchEventType 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