@InterfaceAudience.Public public enum CreateMode extends java.lang.Enum<CreateMode>
Enum Constant and Description |
---|
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.
|
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(java.lang.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(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 nullpublic boolean isEphemeral()
public boolean isSequential()
public int toFlag()
public static CreateMode fromFlag(int flag) throws KeeperException
KeeperException
Copyright © 2018 The Apache Software Foundation