public enum HotRestartClusterStartStatus extends Enum<HotRestartClusterStartStatus>
| Enum Constant and Description |
|---|
CLUSTER_START_FAILED
Indicates that the cluster verification failed because of either mismatching partition tables or
not-loaded data on some nodes
|
CLUSTER_START_IN_PROGRESS
Initial state that is set at the beginning of the cluster verification process.
|
CLUSTER_START_SUCCEEDED
Final state of the cluster after load process succeeds on all nodes
|
| Modifier and Type | Method and Description |
|---|---|
static HotRestartClusterStartStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HotRestartClusterStartStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HotRestartClusterStartStatus CLUSTER_START_IN_PROGRESS
public static final HotRestartClusterStartStatus CLUSTER_START_FAILED
public static final HotRestartClusterStartStatus CLUSTER_START_SUCCEEDED
public static HotRestartClusterStartStatus[] values()
for (HotRestartClusterStartStatus c : HotRestartClusterStartStatus.values()) System.out.println(c);
public static HotRestartClusterStartStatus 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 nullCopyright © 2022 Hazelcast, Inc.. All Rights Reserved.