| static Op | Op. create(String path,
      byte[] data,
      List<ACL> acl,
      CreateMode createMode) | Constructs a create operation. | 
| static Op | Op. create(String path,
      byte[] data,
      List<ACL> acl,
      CreateMode createMode,
      long ttl) | Constructs a create operation. | 
| Transaction | Transaction. create(String path,
      byte[] data,
      List<ACL> acl,
      CreateMode createMode) |  | 
| String | ZooKeeper. create(String path,
      byte[] data,
      List<ACL> acl,
      CreateMode createMode) | Create a node with the given path. | 
| void | ZooKeeper. create(String path,
      byte[] data,
      List<ACL> acl,
      CreateMode createMode,
      AsyncCallback.Create2Callback cb,
      Object ctx) | The asynchronous version of create. | 
| void | ZooKeeper. create(String path,
      byte[] data,
      List<ACL> acl,
      CreateMode createMode,
      AsyncCallback.Create2Callback cb,
      Object ctx,
      long ttl) | The asynchronous version of create with ttl. | 
| void | ZooKeeper. create(String path,
      byte[] data,
      List<ACL> acl,
      CreateMode createMode,
      AsyncCallback.StringCallback cb,
      Object ctx) | The asynchronous version of create. | 
| String | ZooKeeper. create(String path,
      byte[] data,
      List<ACL> acl,
      CreateMode createMode,
      Stat stat) | Create a node with the given path and returns the Stat of that node. | 
| String | ZooKeeper. create(String path,
      byte[] data,
      List<ACL> acl,
      CreateMode createMode,
      Stat stat,
      long ttl) |  | 
| static CreateMode | CreateMode. fromFlag(int flag,
        CreateMode defaultMode) | Map an integer value to a CreateMode value | 
| static CreateOptions.Builder | CreateOptions. newBuilder(List<ACL> acl,
          CreateMode createMode) |  |