Android
java.lang
public static final enum

java.lang.Thread.State

java.lang.Object
java.lang.Enum<E extends java.lang.Enum<E>> Serializable Comparable<T>
java.lang.Thread.State

A representation of a thread's state. A given thread may only be in one state at a time.

Summary

Enum Values

Thread.State  BLOCKED  The thread is blocked and waiting for a lock. 
Thread.State  NEW  The thread has been created, but has never been started. 
Thread.State  RUNNABLE  The thread may be run. 
Thread.State  TERMINATED  The thread has been terminated. 
Thread.State  TIMED_WAITING  The thread is waiting for a specified amount of time. 
Thread.State  WAITING  The thread is waiting. 

Public Methods

      static    Thread.State  valueOf(String name)
    final  static    State[]  values()
Methods inherited from class java.lang.Enum
Methods inherited from class java.lang.Object
Methods inherited from interface java.lang.Comparable

Details

Enum Values

public static final Thread.State BLOCKED

The thread is blocked and waiting for a lock.

public static final Thread.State NEW

The thread has been created, but has never been started.

public static final Thread.State RUNNABLE

The thread may be run.

public static final Thread.State TERMINATED

The thread has been terminated.

public static final Thread.State TIMED_WAITING

The thread is waiting for a specified amount of time.

public static final Thread.State WAITING

The thread is waiting.

Public Methods

public static Thread.State valueOf(String name)

public static final State[] values()

Copyright 2007 Google Inc. Build 0.9_r1-98467 - 14 Aug 2008 18:56