Enum InVMNodeManager.State
- java.lang.Object
-
- java.lang.Enum<InVMNodeManager.State>
-
- org.apache.activemq.artemis.core.server.impl.InVMNodeManager.State
-
- All Implemented Interfaces:
Serializable,Comparable<InVMNodeManager.State>
- Enclosing class:
- InVMNodeManager
public static enum InVMNodeManager.State extends Enum<InVMNodeManager.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILING_BACKLIVENOT_STARTEDPAUSED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InVMNodeManager.StatevalueOf(String name)Returns the enum constant of this type with the specified name.static InVMNodeManager.State[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LIVE
public static final InVMNodeManager.State LIVE
-
PAUSED
public static final InVMNodeManager.State PAUSED
-
FAILING_BACK
public static final InVMNodeManager.State FAILING_BACK
-
NOT_STARTED
public static final InVMNodeManager.State NOT_STARTED
-
-
Method Detail
-
values
public static InVMNodeManager.State[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (InVMNodeManager.State c : InVMNodeManager.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InVMNodeManager.State valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-