Enum InstanceManagerStatus.StatusEnum
- java.lang.Object
-
- java.lang.Enum<InstanceManagerStatus.StatusEnum>
-
- org.webswing.server.services.rest.resources.model.InstanceManagerStatus.StatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<InstanceManagerStatus.StatusEnum>
- Enclosing class:
- InstanceManagerStatus
public static enum InstanceManagerStatus.StatusEnum extends Enum<InstanceManagerStatus.StatusEnum>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InstanceManagerStatus.StatusEnumfromValue(String value)StringtoString()Stringvalue()static InstanceManagerStatus.StatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static InstanceManagerStatus.StatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STARTING
public static final InstanceManagerStatus.StatusEnum STARTING
-
RUNNING
public static final InstanceManagerStatus.StatusEnum RUNNING
-
STOPPED
public static final InstanceManagerStatus.StatusEnum STOPPED
-
STOPPING
public static final InstanceManagerStatus.StatusEnum STOPPING
-
ERROR
public static final InstanceManagerStatus.StatusEnum ERROR
-
-
Method Detail
-
values
public static InstanceManagerStatus.StatusEnum[] 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 (InstanceManagerStatus.StatusEnum c : InstanceManagerStatus.StatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstanceManagerStatus.StatusEnum 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
-
value
public String value()
-
toString
public String toString()
- Overrides:
toStringin classEnum<InstanceManagerStatus.StatusEnum>
-
fromValue
public static InstanceManagerStatus.StatusEnum fromValue(String value)
-
-