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 |
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 | |
|---|---|
Enum values
FINISHED
public static final AsyncTask.Status FINISHED
Indicates that AsyncTask#onPostExecute has finished.
PENDING
public static final AsyncTask.Status PENDING
Indicates that the task has not been executed yet.
Public methods
valueOf
public static AsyncTask.Status valueOf (String name)
| Parameters | |
|---|---|
name |
String |
| Returns | |
|---|---|
AsyncTask.Status |
|
Content and code samples on this page are subject to the licenses described in the Content License. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-09-30 UTC.