public static enum CleansingExecutionContext.ExecutionMode extends Enum<CleansingExecutionContext.ExecutionMode>
Enum Constant and Description |
---|
OPERATION_EXECUTION |
PROCEDURE_EXECUTION |
PROFILING |
Modifier and Type | Method and Description |
---|---|
boolean |
isOperationExecutionMode() |
boolean |
isProcedureExecutionMode() |
boolean |
isProfilingMode() |
static CleansingExecutionContext.ExecutionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CleansingExecutionContext.ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CleansingExecutionContext.ExecutionMode PROFILING
public static final CleansingExecutionContext.ExecutionMode PROCEDURE_EXECUTION
public static final CleansingExecutionContext.ExecutionMode OPERATION_EXECUTION
public static CleansingExecutionContext.ExecutionMode[] values()
for (CleansingExecutionContext.ExecutionMode c : CleansingExecutionContext.ExecutionMode.values()) System.out.println(c);
public static CleansingExecutionContext.ExecutionMode 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 nullpublic boolean isProfilingMode()
public boolean isProcedureExecutionMode()
public boolean isOperationExecutionMode()