java.lang

Class Thread.State

public static class Thread.State extends Enum<Thread.State>

Represents the current state of a thread, according to the VM rather than the operating system. It can be one of the following:

Since: 1.5

Field Summary
static Thread.StateBLOCKED
static Thread.StateNEW
static Thread.StateRUNNABLE
static Thread.StateTERMINATED
static Thread.StateTIMED_WAITING
static List<Thread.State>VALUES
An immutable list containing the values comprising this enum class in the order they're declared.
static Thread.StateWAITING
Method Summary
List<Thread.State>family()
Returns an immutable list containing the values comprising this enum class in the order they're declared.
static Thread.StatevalueOf(String name)
Static factory to return the enum constant pertaining to the given string name.

Field Detail

BLOCKED

public static final Thread.State BLOCKED

NEW

public static final Thread.State NEW

RUNNABLE

public static final Thread.State RUNNABLE

TERMINATED

public static final Thread.State TERMINATED

TIMED_WAITING

public static final Thread.State TIMED_WAITING

VALUES

public static final List<Thread.State> VALUES
An immutable list containing the values comprising this enum class in the order they're declared. This field may be used to iterate over the constants as follows:
for(State c : State.VALUES)
    System.out.println(c);

WAITING

public static final Thread.State WAITING

Method Detail

family

public final List<Thread.State> family()
Returns an immutable list containing the values comprising this enum class in the order they're declared. This instance method simply returns VALUES. Few programmers should have any need to use this method. It is provided for use by sophisticated enum-based data structures to prevent the need for reflective access to VALUES.

Returns: an immutable list containing the values comprising this enum class, in the order they're declared.

valueOf

public static final Thread.State valueOf(String name)
Static factory to return the enum constant pertaining to the given string name. The string must match exactly an identifier used to declare an enum constant in this type.

Throws: IllegalArgumentException if this enum class has no constant with the specified name.