Package org.apache.curator.framework.api
Enum CuratorEventType
- All Implemented Interfaces:
Serializable
,Comparable<CuratorEventType>
,java.lang.constant.Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCorresponds toCuratorFramework.watchers()
Corresponds toCuratorFramework.getChildren()
Event sent when client is being closedCorresponds toCuratorFramework.create()
Corresponds toCuratorFramework.delete()
Corresponds toCuratorFramework.checkExists()
Corresponds toCuratorFramework.getACL()
Corresponds toCuratorFramework.getConfig()
Corresponds toCuratorFramework.getData()
Corresponds toCuratorFramework.reconfig()
Corresponds toCuratorFramework.watchers()
()}Corresponds toCuratorFramework.setACL()
Corresponds toCuratorFramework.setData()
Corresponds toCuratorFramework.sync()
Corresponds toCuratorFramework.transaction()
Corresponds toWatchableBase.usingWatcher(Watcher)
orWatchable.watched()
-
Method Summary
Modifier and TypeMethodDescriptionstatic CuratorEventType
Returns the enum constant of this type with the specified name.static CuratorEventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CREATE
Corresponds toCuratorFramework.create()
-
DELETE
Corresponds toCuratorFramework.delete()
-
EXISTS
Corresponds toCuratorFramework.checkExists()
-
GET_DATA
Corresponds toCuratorFramework.getData()
-
SET_DATA
Corresponds toCuratorFramework.setData()
-
CHILDREN
Corresponds toCuratorFramework.getChildren()
-
SYNC
Corresponds toCuratorFramework.sync()
-
GET_ACL
Corresponds toCuratorFramework.getACL()
-
SET_ACL
Corresponds toCuratorFramework.setACL()
-
TRANSACTION
Corresponds toCuratorFramework.transaction()
-
GET_CONFIG
Corresponds toCuratorFramework.getConfig()
-
RECONFIG
Corresponds toCuratorFramework.reconfig()
-
WATCHED
Corresponds toWatchableBase.usingWatcher(Watcher)
orWatchable.watched()
-
REMOVE_WATCHES
Corresponds toCuratorFramework.watchers()
()} -
CLOSING
Event sent when client is being closed -
ADD_WATCH
Corresponds toCuratorFramework.watchers()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-