Package org.nuxeo.runtime
Enum RuntimeMessageHandlerImpl.ComponentManagerStep
- java.lang.Object
-
- java.lang.Enum<RuntimeMessageHandlerImpl.ComponentManagerStep>
-
- org.nuxeo.runtime.RuntimeMessageHandlerImpl.ComponentManagerStep
-
- All Implemented Interfaces:
Serializable
,Comparable<RuntimeMessageHandlerImpl.ComponentManagerStep>
- Enclosing class:
- RuntimeMessageHandlerImpl
protected static enum RuntimeMessageHandlerImpl.ComponentManagerStep extends Enum<RuntimeMessageHandlerImpl.ComponentManagerStep>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVATING
DEACTIVATING
RUNNING
STARTING
STOPPING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RuntimeMessageHandlerImpl.ComponentManagerStep
valueOf(String name)
Returns the enum constant of this type with the specified name.static RuntimeMessageHandlerImpl.ComponentManagerStep[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVATING
public static final RuntimeMessageHandlerImpl.ComponentManagerStep ACTIVATING
-
STARTING
public static final RuntimeMessageHandlerImpl.ComponentManagerStep STARTING
-
RUNNING
public static final RuntimeMessageHandlerImpl.ComponentManagerStep RUNNING
-
STOPPING
public static final RuntimeMessageHandlerImpl.ComponentManagerStep STOPPING
-
DEACTIVATING
public static final RuntimeMessageHandlerImpl.ComponentManagerStep DEACTIVATING
-
-
Method Detail
-
values
public static RuntimeMessageHandlerImpl.ComponentManagerStep[] 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 (RuntimeMessageHandlerImpl.ComponentManagerStep c : RuntimeMessageHandlerImpl.ComponentManagerStep.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RuntimeMessageHandlerImpl.ComponentManagerStep 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
-
-