Package com.mendix.m2ee.api
Enum IMxRuntime.RuntimeState
- java.lang.Object
-
- java.lang.Enum<IMxRuntime.RuntimeState>
-
- com.mendix.m2ee.api.IMxRuntime.RuntimeState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IMxRuntime.RuntimeState>
- Enclosing interface:
- IMxRuntime
public static enum IMxRuntime.RuntimeState extends java.lang.Enum<IMxRuntime.RuntimeState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BROKEN
CREATED
FEUT
RUNNING
STARTING
STARTING_CONNECTIONBUS_RUNNING
STARTING_HAS_CONNECTIONBUS
STARTING_HAS_CORE
STARTING_HAS_MODELCONF
STARTING_HAS_NO_DB
STARTING_INITIALIZING_CONNECTIONBUS
STOPPED
STOPPING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static IMxRuntime.RuntimeState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IMxRuntime.RuntimeState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FEUT
public static final IMxRuntime.RuntimeState FEUT
-
CREATED
public static final IMxRuntime.RuntimeState CREATED
-
STARTING
public static final IMxRuntime.RuntimeState STARTING
-
STARTING_HAS_MODELCONF
public static final IMxRuntime.RuntimeState STARTING_HAS_MODELCONF
-
STARTING_HAS_CORE
public static final IMxRuntime.RuntimeState STARTING_HAS_CORE
-
STARTING_INITIALIZING_CONNECTIONBUS
public static final IMxRuntime.RuntimeState STARTING_INITIALIZING_CONNECTIONBUS
-
STARTING_HAS_NO_DB
public static final IMxRuntime.RuntimeState STARTING_HAS_NO_DB
-
STARTING_HAS_CONNECTIONBUS
public static final IMxRuntime.RuntimeState STARTING_HAS_CONNECTIONBUS
-
STARTING_CONNECTIONBUS_RUNNING
public static final IMxRuntime.RuntimeState STARTING_CONNECTIONBUS_RUNNING
-
BROKEN
public static final IMxRuntime.RuntimeState BROKEN
-
RUNNING
public static final IMxRuntime.RuntimeState RUNNING
-
STOPPING
public static final IMxRuntime.RuntimeState STOPPING
-
STOPPED
public static final IMxRuntime.RuntimeState STOPPED
-
-
Method Detail
-
values
public static IMxRuntime.RuntimeState[] 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 (IMxRuntime.RuntimeState c : IMxRuntime.RuntimeState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IMxRuntime.RuntimeState valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<IMxRuntime.RuntimeState>
-
-