public static enum Corrector.ExecutionApproach extends java.lang.Enum<Corrector.ExecutionApproach>
Enum Constant and Description |
---|
INVOKING_MULTIPLE
Execution approach: direct workers invocation, multiple requests.
|
INVOKING_SINGLE
Execution approach: direct workers invocation, only 1 request.
|
NESTING_SINGLE
Execution approach: direct synchronous nesting, only 1 request.
|
SCHEDULING_MULTIPLE
Execution approach: indirect tasks scheduling, multiple requests.
|
SCHEDULING_SINGLE
Execution approach: indirect tasks scheduling, only 1 request.
|
Modifier and Type | Field and Description |
---|---|
java.lang.String |
codeName
Code name of the execution approach.
|
java.lang.String |
fullName
Full name of the execution approach.
|
Modifier and Type | Method and Description |
---|---|
static Corrector.ExecutionApproach |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Corrector.ExecutionApproach[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Corrector.ExecutionApproach NESTING_SINGLE
public static final Corrector.ExecutionApproach INVOKING_SINGLE
public static final Corrector.ExecutionApproach INVOKING_MULTIPLE
public static final Corrector.ExecutionApproach SCHEDULING_SINGLE
public static final Corrector.ExecutionApproach SCHEDULING_MULTIPLE
public final java.lang.String codeName
public final java.lang.String fullName
public static Corrector.ExecutionApproach[] values()
for (Corrector.ExecutionApproach c : Corrector.ExecutionApproach.values()) System.out.println(c);
public static Corrector.ExecutionApproach valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null