public static enum Runtime.ThreadState extends java.lang.Enum<Runtime.ThreadState>
Enum Constant and Description |
---|
findingNeighbours |
moving |
reading_messages |
rebuilding |
steping |
updatingFacts |
waiting |
Modifier and Type | Method and Description |
---|---|
static Runtime.ThreadState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Runtime.ThreadState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Runtime.ThreadState waiting
public static final Runtime.ThreadState moving
public static final Runtime.ThreadState rebuilding
public static final Runtime.ThreadState findingNeighbours
public static final Runtime.ThreadState reading_messages
public static final Runtime.ThreadState steping
public static final Runtime.ThreadState updatingFacts
public static Runtime.ThreadState[] values()
for (Runtime.ThreadState c : Runtime.ThreadState.values()) System.out.println(c);
public static Runtime.ThreadState 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 null