public static enum ParallelFuture.ExecutionState extends Enum<ParallelFuture.ExecutionState>
Modifier and Type | Method and Description |
---|---|
static ParallelFuture.ExecutionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParallelFuture.ExecutionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParallelFuture.ExecutionState READY
public static final ParallelFuture.ExecutionState EXECUTED
public static final ParallelFuture.ExecutionState CANCELLED
public static ParallelFuture.ExecutionState[] values()
for (ParallelFuture.ExecutionState c : ParallelFuture.ExecutionState.values()) System.out.println(c);
public static ParallelFuture.ExecutionState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015 Rice University - Department of Computer Science. All rights reserved.