public static enum ExecInterceptor.ExecType extends Enum<ExecInterceptor.ExecType>
Enum Constant and Description |
---|
BLOCKING
The execution is performing blocking IO.
|
COMPUTE
The execution is performing computation (i.e.
|
Modifier and Type | Method and Description |
---|---|
static ExecInterceptor.ExecType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecInterceptor.ExecType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecInterceptor.ExecType BLOCKING
public static final ExecInterceptor.ExecType COMPUTE
public static ExecInterceptor.ExecType[] values()
for (ExecInterceptor.ExecType c : ExecInterceptor.ExecType.values()) System.out.println(c);
public static ExecInterceptor.ExecType 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