Serializable
, Comparable<Thread.State>
, Constable
Thread
public static enum Thread.State extends Enum<Thread.State>
NEW
RUNNABLE
BLOCKED
WAITING
TIMED_WAITING
TERMINATED
A thread can be in only one state at a given point in time. These states are virtual machine states which do not reflect any operating system thread states.
Enum.EnumDesc<E extends Enum<E>>
Enum Constant | Description |
---|---|
BLOCKED |
Thread state for a thread blocked waiting for a monitor lock. |
NEW |
Thread state for a thread which has not yet started. |
RUNNABLE |
Thread state for a runnable thread. |
TERMINATED |
Thread state for a terminated thread. |
TIMED_WAITING |
Thread state for a waiting thread with a specified waiting time. |
WAITING |
Thread state for a waiting thread. |
Modifier and Type | Method | Description |
---|---|---|
static Thread.State |
valueOf |
Returns the enum constant of this class with the specified name. |
static Thread.State[] |
values() |
Returns an array containing the constants of this enum class, in the order they are declared. |
public static final Thread.State NEW
public static final Thread.State RUNNABLE
public static final Thread.State BLOCKED
Object.wait
.public static final Thread.State WAITING
Object.wait
with no timeoutThread.join
with no timeoutLockSupport.park
A thread in the waiting state is waiting for another thread to perform a particular action. For example, a thread that has called Object.wait()
on an object is waiting for another thread to call Object.notify()
or Object.notifyAll()
on that object. A thread that has called Thread.join()
is waiting for a specified thread to terminate.
public static final Thread.State TIMED_WAITING
Thread.sleep
Object.wait
with timeoutThread.join
with timeoutLockSupport.parkNanos
LockSupport.parkUntil
public static final Thread.State TERMINATED
public static Thread.State[] values()
public static Thread.State valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Thread.State.html