java.io.Serializable
, java.lang.Comparable<KeeperException.Code>
, KeeperException.CodeDeprecated
@Public public static enum KeeperException.Code extends java.lang.Enum<KeeperException.Code> implements KeeperException.CodeDeprecated
Enum Constant | Description |
---|---|
APIERROR |
API errors.
|
AUTHFAILED |
Client authentication failed
|
BADARGUMENTS |
Invalid arguments
|
BADVERSION |
Version conflict
|
CONNECTIONLOSS |
Connection to the server has been lost
|
DATAINCONSISTENCY |
A data inconsistency was found
|
INVALIDACL |
Invalid ACL specified
|
INVALIDCALLBACK |
Invalid callback specified
|
MARSHALLINGERROR |
Error while marshalling or unmarshalling data
|
NOAUTH |
Not authenticated
|
NOCHILDRENFOREPHEMERALS |
Ephemeral nodes may not have children
|
NODEEXISTS |
The node already exists
|
NONODE |
Node does not exist
|
NOTEMPTY |
The node has children
|
NOTREADONLY |
State-changing request is passed to read-only server
|
OK |
Everything is OK
|
OPERATIONTIMEOUT |
Operation timeout
|
RUNTIMEINCONSISTENCY |
A runtime inconsistency was found
|
SESSIONEXPIRED |
The session has been expired by the server
|
SESSIONMOVED |
Session moved to another server, so operation is ignored
|
SYSTEMERROR |
System and server-side errors.
|
UNIMPLEMENTED |
Operation is unimplemented
|
APIError, AuthFailed, BadArguments, BadVersion, ConnectionLoss, DataInconsistency, InvalidACL, InvalidCallback, MarshallingError, NoAuth, NoChildrenForEphemerals, NodeExists, NoNode, NotEmpty, Ok, OperationTimeout, RuntimeInconsistency, SessionExpired, SystemError, Unimplemented
Modifier and Type | Method | Description |
---|---|---|
static KeeperException.Code |
get(int code) |
Get the Code value for a particular integer error code
|
int |
intValue() |
Get the int value for a particular Code.
|
static KeeperException.Code |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static KeeperException.Code[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeeperException.Code OK
public static final KeeperException.Code SYSTEMERROR
APIERROR
, are system errors.public static final KeeperException.Code RUNTIMEINCONSISTENCY
public static final KeeperException.Code DATAINCONSISTENCY
public static final KeeperException.Code CONNECTIONLOSS
public static final KeeperException.Code MARSHALLINGERROR
public static final KeeperException.Code UNIMPLEMENTED
public static final KeeperException.Code OPERATIONTIMEOUT
public static final KeeperException.Code BADARGUMENTS
public static final KeeperException.Code APIERROR
SYSTEMERROR
).public static final KeeperException.Code NONODE
public static final KeeperException.Code NOAUTH
public static final KeeperException.Code BADVERSION
public static final KeeperException.Code NOCHILDRENFOREPHEMERALS
public static final KeeperException.Code NODEEXISTS
public static final KeeperException.Code NOTEMPTY
public static final KeeperException.Code SESSIONEXPIRED
public static final KeeperException.Code INVALIDCALLBACK
public static final KeeperException.Code INVALIDACL
public static final KeeperException.Code AUTHFAILED
public static final KeeperException.Code SESSIONMOVED
public static final KeeperException.Code NOTREADONLY
public static KeeperException.Code[] values()
for (KeeperException.Code c : KeeperException.Code.values()) System.out.println(c);
public static KeeperException.Code 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 nullpublic int intValue()
public static KeeperException.Code get(int code)
code
- int error codeCopyright © 2018 The Apache Software Foundation