java.lang.Object
java.lang.Enum<Thread.State>
java.lang.Thread.State
- All Implemented Interfaces:
- Serializable, Comparable<Thread.State>
- Enclosing class:
- Thread
- See Also:
- Source Code,
TERMINATED
, TIMED_WAITING
, WAITING
, BLOCKED
, RUNNABLE
, NEW
, Thread.getState()
public static final Thread.State BLOCKED
- See Also:
Object.wait
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final Thread.State NEW
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final Thread.State RUNNABLE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final Thread.State TERMINATED
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final Thread.State TIMED_WAITING
- See Also:
LockSupport.parkUntil
, LockSupport.parkNanos
, Thread.join
, Object.wait
, Thread.sleep
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static Thread.State valueOf(String name)
- See Also:
- IllegalArgumentException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final Thread.State[] values()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final Thread.State WAITING
- See Also:
LockSupport.park
, Thread.join
, Object.wait
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples