public static enum PartitionManager.DisableAction extends java.lang.Enum<PartitionManager.DisableAction>
Enum Constant and Description |
---|
LEAVE_CLUSTER
Perform any object migrations needed to migrate
partitions owned by this node to the first order
replica node, and remove this node from all replica
lists.
|
LEAVE_CLUSTER_FORCE
Same as LEAVE_CLUSTER, but with audits disabled.
|
Modifier and Type | Method and Description |
---|---|
static PartitionManager.DisableAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PartitionManager.DisableAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PartitionManager.DisableAction LEAVE_CLUSTER
public static final PartitionManager.DisableAction LEAVE_CLUSTER_FORCE
public static PartitionManager.DisableAction[] values()
for (PartitionManager.DisableAction c : PartitionManager.DisableAction.values()) System.out.println(c);
public static PartitionManager.DisableAction 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 null