Package org.rossonet.brain.api.astrocyte
Enum Astrocyte.AstrocyteStatus
- java.lang.Object
-
- java.lang.Enum<Astrocyte.AstrocyteStatus>
-
- org.rossonet.brain.api.astrocyte.Astrocyte.AstrocyteStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Astrocyte.AstrocyteStatus>
- Enclosing interface:
- Astrocyte
public static enum Astrocyte.AstrocyteStatus extends java.lang.Enum<Astrocyte.AstrocyteStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOTINGBOOTING_DEBUGEMPTYFAULTEDINITRUNNINGRUNNING_DEBUGTERMINATED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Astrocyte.AstrocyteStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Astrocyte.AstrocyteStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INIT
public static final Astrocyte.AstrocyteStatus INIT
-
BOOTING
public static final Astrocyte.AstrocyteStatus BOOTING
-
BOOTING_DEBUG
public static final Astrocyte.AstrocyteStatus BOOTING_DEBUG
-
EMPTY
public static final Astrocyte.AstrocyteStatus EMPTY
-
RUNNING
public static final Astrocyte.AstrocyteStatus RUNNING
-
RUNNING_DEBUG
public static final Astrocyte.AstrocyteStatus RUNNING_DEBUG
-
FAULTED
public static final Astrocyte.AstrocyteStatus FAULTED
-
TERMINATED
public static final Astrocyte.AstrocyteStatus TERMINATED
-
-
Method Detail
-
values
public static Astrocyte.AstrocyteStatus[] 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 (Astrocyte.AstrocyteStatus c : Astrocyte.AstrocyteStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Astrocyte.AstrocyteStatus 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
-
-