public enum CreateMode extends Enum<CreateMode>
| Enum Constant and Description | 
|---|
| EPHEMERALThe znode will be deleted upon the client's disconnect. | 
| EPHEMERAL_SEQUENTIALThe znode will be deleted upon the client's disconnect, and its name
 will be appended with a monotonically increasing number. | 
| PERSISTENTThe znode will not be automatically deleted upon client's disconnect. | 
| PERSISTENT_SEQUENTIALThe znode will not be automatically deleted upon client's disconnect,
 and its name will be appended with a monotonically increasing number. | 
| Modifier and Type | Method and Description | 
|---|---|
| static CreateMode | fromFlag(int flag)Map an integer value to a CreateMode value | 
| boolean | isEphemeral() | 
| boolean | isSequential() | 
| int | toFlag() | 
| static CreateMode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static CreateMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final CreateMode PERSISTENT
public static final CreateMode PERSISTENT_SEQUENTIAL
public static final CreateMode EPHEMERAL
public static final CreateMode EPHEMERAL_SEQUENTIAL
public static CreateMode[] values()
for (CreateMode c : CreateMode.values()) System.out.println(c);
public static CreateMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic boolean isEphemeral()
public boolean isSequential()
public int toFlag()
public static CreateMode fromFlag(int flag) throws KeeperException
KeeperExceptionCopyright © 2016 The Apache Software Foundation