public static enum CmdLogicBoard.ClbState extends java.lang.Enum<CmdLogicBoard.ClbState>
Enum Constant and Description |
---|
IDLE |
PAUSED |
READY |
RUNNING |
STAND_BY |
UNDEFINED |
Modifier and Type | Method and Description |
---|---|
static CmdLogicBoard.ClbState |
byID(int id) |
java.lang.String |
toString() |
static CmdLogicBoard.ClbState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmdLogicBoard.ClbState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmdLogicBoard.ClbState UNDEFINED
public static final CmdLogicBoard.ClbState IDLE
public static final CmdLogicBoard.ClbState STAND_BY
public static final CmdLogicBoard.ClbState READY
public static final CmdLogicBoard.ClbState PAUSED
public static final CmdLogicBoard.ClbState RUNNING
public static CmdLogicBoard.ClbState[] values()
for (CmdLogicBoard.ClbState c : CmdLogicBoard.ClbState.values()) System.out.println(c);
public static CmdLogicBoard.ClbState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static CmdLogicBoard.ClbState byID(int id)
public java.lang.String toString()
toString
in class java.lang.Enum<CmdLogicBoard.ClbState>