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.
RUNNING
public static final AsyncTask.Status RUNNING
Indicates that the task is running.
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 and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-09-03 UTC.