public static enum Thread.State extends Enum<Thread.State>
Enum Constant and Description |
---|
BLOCKED
A Thread which is blocked on a monitor.
|
NEW
A Thread which has not yet started.
|
RUNNABLE
A Thread which is running or suspended.
|
TERMINATED
A thread which is no longer alive.
|
TIMED_WAITING
A Thread which is waiting with a timeout.
|
WAITING
A Thread which is waiting with no timeout.
|
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 Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2023, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.