@InterfaceAudience.Public public enum CreateMode extends Enum<CreateMode>
Enum Constant and Description |
---|
CONTAINER
The znode will be a container node.
|
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.
|
PERSISTENT_SEQUENTIAL_WITH_TTL
The znode will not be automatically deleted upon client's disconnect,
and its name will be appended with a monotonically increasing number.
|
PERSISTENT_WITH_TTL
The znode will not be automatically deleted upon client's disconnect.
|
Modifier and Type | Method and Description |
---|---|
static CreateMode |
fromFlag(int flag)
Map an integer value to a CreateMode value
|
static CreateMode |
fromFlag(int flag,
CreateMode defaultMode)
Map an integer value to a CreateMode value
|
boolean |
isContainer() |
boolean |
isEphemeral() |
boolean |
isSequential() |
boolean |
isTTL() |
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 final CreateMode CONTAINER
KeeperException.NoNodeException
when creating children inside of this container node.public static final CreateMode PERSISTENT_WITH_TTL
public static final CreateMode PERSISTENT_SEQUENTIAL_WITH_TTL
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 boolean isContainer()
public boolean isTTL()
public int toFlag()
public static CreateMode fromFlag(int flag) throws KeeperException
KeeperException
public static CreateMode fromFlag(int flag, CreateMode defaultMode)
Copyright © 2008–2020 The Apache Software Foundation. All rights reserved.