Uses of Class
org.apache.zookeeper.CreateMode
-
Packages that use CreateMode Package Description org.apache.zookeeper -
-
Uses of CreateMode in org.apache.zookeeper
Methods in org.apache.zookeeper that return CreateMode Modifier and Type Method Description static CreateMode
CreateMode. fromFlag(int flag)
Map an integer value to a CreateMode valuestatic CreateMode
CreateMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CreateMode[]
CreateMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.zookeeper with parameters of type CreateMode Modifier and Type Method Description static Op
Op. create(java.lang.String path, byte[] data, java.util.List<ACL> acl, CreateMode createMode)
Constructs a create operation.Transaction
Transaction. create(java.lang.String path, byte[] data, java.util.List<ACL> acl, CreateMode createMode)
java.lang.String
ZooKeeper. create(java.lang.String path, byte[] data, java.util.List<ACL> acl, CreateMode createMode)
Create a node with the given path.void
ZooKeeper. create(java.lang.String path, byte[] data, java.util.List<ACL> acl, CreateMode createMode, AsyncCallback.StringCallback cb, java.lang.Object ctx)
The asynchronous version of create.
-