public static enum DelegatingInvocation.DelegationType extends Enum<DelegatingInvocation.DelegationType>
| Enum Constant and Description |
|---|
ASYNC
The delegated routine is invoked in asynchronous mode.
|
PARALLEL
The delegated routine is invoked in parallel mode.
|
SYNC
The delegated routine is invoked in synchronous mode.
|
| Modifier and Type | Method and Description |
|---|---|
static DelegatingInvocation.DelegationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DelegatingInvocation.DelegationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DelegatingInvocation.DelegationType SYNC
public static final DelegatingInvocation.DelegationType ASYNC
public static final DelegatingInvocation.DelegationType PARALLEL
public static DelegatingInvocation.DelegationType[] values()
for (DelegatingInvocation.DelegationType c : DelegatingInvocation.DelegationType.values()) System.out.println(c);
public static DelegatingInvocation.DelegationType 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