|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AsyncTaskEx.Status>
com.commonsware.cwac.task.AsyncTaskEx.Status
public static enum AsyncTaskEx.Status
Indicates the current status of the task. Each status will be set only once during the lifetime of a task.
Enum Constant Summary | |
---|---|
FINISHED
Indicates that AsyncTaskEx.onPostExecute(Result) has finished. |
|
PENDING
Indicates that the task has not been executed yet. |
|
RUNNING
Indicates that the task is running. |
Method Summary | |
---|---|
static AsyncTaskEx.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AsyncTaskEx.Status[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AsyncTaskEx.Status PENDING
public static final AsyncTaskEx.Status RUNNING
public static final AsyncTaskEx.Status FINISHED
AsyncTaskEx.onPostExecute(Result)
has finished.
Method Detail |
---|
public static AsyncTaskEx.Status[] values()
for (AsyncTaskEx.Status c : AsyncTaskEx.Status.values()) System.out.println(c);
public static AsyncTaskEx.Status valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |