|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Watcher.Event.KeeperState> org.apache.zookeeper.Watcher.Event.KeeperState
public static enum Watcher.Event.KeeperState
Enumeration of states the ZooKeeper may be at the event
Enum Constant Summary | |
---|---|
AuthFailed
Auth failed state |
|
ConnectedReadOnly
The client is connected to a read-only server, that is the server which is not currently connected to the majority. |
|
Disconnected
The client is in the disconnected state - it is not connected to any server in the ensemble. |
|
Expired
The serving cluster has expired this session. |
|
NoSyncConnected
Deprecated. |
|
SaslAuthenticated
SaslAuthenticated: used to notify clients that they are SASL-authenticated, so that they can perform Zookeeper actions with their SASL-authorized permissions. |
|
SyncConnected
The client is in the connected state - it is connected to a server in the ensemble (one of the servers specified in the host connection parameter during ZooKeeper client creation). |
|
Unknown
Deprecated. |
Method Summary | |
---|---|
static Watcher.Event.KeeperState |
fromInt(int intValue)
|
int |
getIntValue()
|
static Watcher.Event.KeeperState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Watcher.Event.KeeperState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
@Deprecated public static final Watcher.Event.KeeperState Unknown
public static final Watcher.Event.KeeperState Disconnected
@Deprecated public static final Watcher.Event.KeeperState NoSyncConnected
public static final Watcher.Event.KeeperState SyncConnected
public static final Watcher.Event.KeeperState AuthFailed
public static final Watcher.Event.KeeperState ConnectedReadOnly
public static final Watcher.Event.KeeperState SaslAuthenticated
public static final Watcher.Event.KeeperState Expired
Method Detail |
---|
public static Watcher.Event.KeeperState[] values()
for (Watcher.Event.KeeperState c : Watcher.Event.KeeperState.values()) System.out.println(c);
public static Watcher.Event.KeeperState valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic int getIntValue()
public static Watcher.Event.KeeperState fromInt(int intValue)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |