public enum ManagementNodeState extends java.lang.Enum<ManagementNodeState>
| Enum Constant and Description | 
|---|
| FAILEDNode has failed and requires maintenance attention | 
| HOT_STANDBYNode is acting as read-only proxy | 
| INITIALIZINGNode is either coming online, or is in some kind of recovery/transitioning mode | 
| MASTERNode is running as primary/master, able to manage entities and create new ones | 
| STANDBYNode is in "lukewarm standby" mode, where it is available to be promoted to master,
 but does not have entities loaded and will require some effort to be promoted | 
| TERMINATEDNode has gone away; maintenance not possible | 
| UNINITIALISEDDeprecated. 
 since 0.7.0 synonym for maintenance (plus, it should have been US English!) | 
| Modifier and Type | Method and Description | 
|---|---|
| static ManagementNodeState | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ManagementNodeState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ManagementNodeState UNINITIALISED
public static final ManagementNodeState INITIALIZING
public static final ManagementNodeState STANDBY
public static final ManagementNodeState HOT_STANDBY
public static final ManagementNodeState MASTER
public static final ManagementNodeState FAILED
public static final ManagementNodeState TERMINATED
public static ManagementNodeState[] values()
for (ManagementNodeState c : ManagementNodeState.values()) System.out.println(c);
public static ManagementNodeState 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