public static enum Thread.State extends Enum<Thread.State>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final Thread.State NEW
public static final Thread.State RUNNABLE
public static final Thread.State BLOCKED
public static final Thread.State WAITING
public static final Thread.State TIMED_WAITING
public static final Thread.State TERMINATED
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 nameNullPointerException
- if the argument is null