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 and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2023-02-08 UTC.
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"Missing the information I need"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"Too complicated / too many steps"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"Out of date"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"Samples / code issue"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"Other"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"Easy to understand"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"Solved my problem"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"Other"
}]

