public static enum Invoke.InvocationMode extends Enum<Invoke.InvocationMode>
| Enum Constant and Description |
|---|
ASYNC
Asynchronous mode.
|
PARALLEL
Parallel mode.
|
SYNC
Synchronous mode.
|
| Modifier and Type | Method and Description |
|---|---|
static Invoke.InvocationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Invoke.InvocationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Invoke.InvocationMode SYNC
public static final Invoke.InvocationMode ASYNC
public static final Invoke.InvocationMode PARALLEL
public static Invoke.InvocationMode[] values()
for (Invoke.InvocationMode c : Invoke.InvocationMode.values()) System.out.println(c);
public static Invoke.InvocationMode 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 null