|
XNIO version 1.0.0.GA | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<IoFuture.Status>
org.jboss.xnio.IoFuture.Status
public static enum IoFuture.Status

The current status of an asynchronous operation.
| Enum Constant Summary | |
|---|---|
CANCELLED
The operation was cancelled. |
|
DONE
The operation has completed successfully. |
|
FAILED
The operation did not succeed. |
|
TIMED_OUT
The request timed out before the operation was complete; otherwise equivalent to status WAITING. |
|
WAITING
The operation is still in progress. |
|
| Method Summary | |
|---|---|
static IoFuture.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IoFuture.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 |
|---|
clone, compareTo, equals, finalize, 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 IoFuture.Status WAITING
public static final IoFuture.Status DONE
public static final IoFuture.Status CANCELLED
public static final IoFuture.Status FAILED
public static final IoFuture.Status TIMED_OUT
WAITING.
| Method Detail |
|---|
public static IoFuture.Status[] values()
for (IoFuture.Status c : IoFuture.Status.values()) System.out.println(c);
public static IoFuture.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
|
XNIO version 1.0.0.GA | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||