Most visited

Recently visited

Added in API level 3

AsyncTask.Status

public static final enum AsyncTask.Status
extends Enum<AsyncTask.Status>

java.lang.Object
   ↳ java.lang.Enum<android.os.AsyncTask.Status>
     ↳ android.os.AsyncTask.Status


Indicates the current status of the task. Each status will be set only once during the lifetime of a task.

Summary

Enum values

AsyncTask.Status  FINISHED

Indicates that onPostExecute(Result) has finished. 

AsyncTask.Status  PENDING

Indicates that the task has not been executed yet. 

AsyncTask.Status  RUNNING

Indicates that the task is running. 

Public methods

static AsyncTask.Status valueOf(String name)
static final Status[] values()

Inherited methods

From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum values

FINISHED

Added in API level 3
AsyncTask.Status FINISHED

Indicates that onPostExecute(Result) has finished.

PENDING

Added in API level 3
AsyncTask.Status PENDING

Indicates that the task has not been executed yet.

RUNNING

Added in API level 3
AsyncTask.Status RUNNING

Indicates that the task is running.

Public methods

valueOf

Added in API level 3
AsyncTask.Status valueOf (String name)

Parameters
name String
Returns
AsyncTask.Status

values

Added in API level 3
Status[] values ()

Returns
Status[]

Hooray!