org.apache.zookeeper
Enum Watcher.Event.EventType
java.lang.Object
java.lang.Enum<Watcher.Event.EventType>
org.apache.zookeeper.Watcher.Event.EventType
- All Implemented Interfaces:
- Serializable, Comparable<Watcher.Event.EventType>
- Enclosing interface:
- Watcher.Event
public static enum Watcher.Event.EventType
- extends Enum<Watcher.Event.EventType>
Enumeration of types of events that may occur on the ZooKeeper
None
public static final Watcher.Event.EventType None
NodeCreated
public static final Watcher.Event.EventType NodeCreated
NodeDeleted
public static final Watcher.Event.EventType NodeDeleted
NodeDataChanged
public static final Watcher.Event.EventType NodeDataChanged
NodeChildrenChanged
public static final Watcher.Event.EventType NodeChildrenChanged
values
public static Watcher.Event.EventType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Watcher.Event.EventType c : Watcher.Event.EventType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Watcher.Event.EventType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
getIntValue
public int getIntValue()
fromInt
public static Watcher.Event.EventType fromInt(int intValue)
Copyright © 2011 The Apache Software Foundation