|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Thread.State>
java.lang.Thread.State
public static enum Thread.State
A representation of a thread's state. A given thread may only be in one state at a time.
| Enum Constant Summary | |
|---|---|
BLOCKED
The thread is blocked and waiting for a lock. |
|
NEW
The thread has been created, but has never been started. |
|
RUNNABLE
The thread may be run. |
|
TERMINATED
The thread has been terminated. |
|
TIMED_WAITING
The thread is waiting for a specified amount of time. |
|
WAITING
The thread is waiting. |
|
| Method Summary | |
|---|---|
static Thread.State |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Thread.State[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, getValues, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Thread.State BLOCKED
public static final Thread.State NEW
public static final Thread.State RUNNABLE
public static final Thread.State TERMINATED
public static final Thread.State TIMED_WAITING
public static final Thread.State WAITING
| Method Detail |
|---|
public static Thread.State[] values()
for (Thread.State c : Thread.State.values()) System.out.println(c);
public static Thread.State valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
Build 1.0_r1(from source) | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||