KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > lang > Thread.State

java.lang
Enum Thread.State

java.lang.Object
  extended by java.lang.Enum<Thread.State>
      extended by 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  

Popular Tags