|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<CreateMode> org.apache.zookeeper.CreateMode
public enum CreateMode
CreateMode value determines how the znode is created on ZooKeeper.
Enum Constant Summary | |
---|---|
EPHEMERAL
The znode will be deleted upon the client's disconnect. |
|
EPHEMERAL_SEQUENTIAL
The znode will be deleted upon the client's disconnect, and its name will be appended with a monotonically increasing number. |
|
PERSISTENT
The znode will not be automatically deleted upon client's disconnect. |
|
PERSISTENT_SEQUENTIAL
The znode will not be automatically deleted upon client's disconnect, and its name will be appended with a monotonically increasing number. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CreateMode PERSISTENT
public static final CreateMode PERSISTENT_SEQUENTIAL
public static final CreateMode EPHEMERAL
public static final CreateMode EPHEMERAL_SEQUENTIAL
Method Detail |
---|
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 name
NullPointerException
- if the argument is nullpublic boolean isEphemeral()
public boolean isSequential()
public int toFlag()
public static CreateMode fromFlag(int flag) throws KeeperException
KeeperException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |