public enum CuratorEventType extends java.lang.Enum<CuratorEventType>
| Enum Constant | Description |
|---|---|
CHILDREN |
Corresponds to
CuratorFramework.getChildren() |
CLOSING |
Event sent when client is being closed
|
CREATE |
Corresponds to
CuratorFramework.create() |
DELETE |
Corresponds to
CuratorFramework.delete() |
EXISTS |
Corresponds to
CuratorFramework.checkExists() |
GET_ACL |
Corresponds to
CuratorFramework.getACL() |
GET_CONFIG |
Corresponds to
CuratorFramework.getConfig() |
GET_DATA |
Corresponds to
CuratorFramework.getData() |
RECONFIG |
Corresponds to
CuratorFramework.reconfig() |
REMOVE_WATCHES |
Corresponds to
CuratorFramework.watches() ()} |
SET_ACL |
Corresponds to
CuratorFramework.setACL() |
SET_DATA |
Corresponds to
CuratorFramework.setData() |
SYNC |
Corresponds to
CuratorFramework.sync(String, Object) |
TRANSACTION |
Corresponds to
CuratorFramework.transaction() |
WATCHED |
Corresponds to
Watchable.usingWatcher(Watcher) or Watchable.watched() |
| Modifier and Type | Method | Description |
|---|---|---|
static CuratorEventType |
valueOf(java.lang.String name) |
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.
|
public static final CuratorEventType CREATE
CuratorFramework.create()public static final CuratorEventType DELETE
CuratorFramework.delete()public static final CuratorEventType EXISTS
CuratorFramework.checkExists()public static final CuratorEventType GET_DATA
CuratorFramework.getData()public static final CuratorEventType SET_DATA
CuratorFramework.setData()public static final CuratorEventType CHILDREN
CuratorFramework.getChildren()public static final CuratorEventType SYNC
CuratorFramework.sync(String, Object)public static final CuratorEventType GET_ACL
CuratorFramework.getACL()public static final CuratorEventType SET_ACL
CuratorFramework.setACL()public static final CuratorEventType TRANSACTION
CuratorFramework.transaction()public static final CuratorEventType GET_CONFIG
CuratorFramework.getConfig()public static final CuratorEventType RECONFIG
CuratorFramework.reconfig()public static final CuratorEventType WATCHED
Watchable.usingWatcher(Watcher) or Watchable.watched()public static final CuratorEventType REMOVE_WATCHES
CuratorFramework.watches() ()}public static final CuratorEventType CLOSING
public static CuratorEventType[] values()
for (CuratorEventType c : CuratorEventType.values()) System.out.println(c);
public static CuratorEventType 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 nullCopyright © 2011–2018 The Apache Software Foundation. All rights reserved.