public static enum ExecInterceptor.ExecType extends java.lang.Enum<ExecInterceptor.ExecType>
| Enum Constant and Description |
|---|
BLOCKING
The execution segment is executing on a blocking thread.
|
COMPUTE
The execution segment is executing on a compute thread.
|
| Modifier and Type | Method and Description |
|---|---|
static ExecInterceptor.ExecType |
valueOf(java.lang.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(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