public static enum PipelineInterceptor.ExecutionMode extends Enum<PipelineInterceptor.ExecutionMode>
| Enum Constant and Description |
|---|
EXECUTE_ALL
Continue by executing everything, including the intercepted steps and
PipelineInterceptor.afterSteps(PipelineContext, Object). |
EXECUTE_NONE
Continue after the intercepted steps.
|
EXECUTE_SKIP_STEPS
Skip after the intercepted steps but do execute
PipelineInterceptor.afterSteps(PipelineContext, Object). |
EXECUTE_STEPS_NOT_AFTER
Continue by executing the steps, but do not execute
PipelineInterceptor.afterSteps(PipelineContext, Object).. |
| Modifier and Type | Method and Description |
|---|---|
static PipelineInterceptor.ExecutionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PipelineInterceptor.ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PipelineInterceptor.ExecutionMode EXECUTE_ALL
PipelineInterceptor.afterSteps(PipelineContext, Object).public static final PipelineInterceptor.ExecutionMode EXECUTE_SKIP_STEPS
PipelineInterceptor.afterSteps(PipelineContext, Object).public static final PipelineInterceptor.ExecutionMode EXECUTE_STEPS_NOT_AFTER
PipelineInterceptor.afterSteps(PipelineContext, Object)..public static final PipelineInterceptor.ExecutionMode EXECUTE_NONE
PipelineInterceptor.afterSteps(PipelineContext, Object) is
also not executed.public static PipelineInterceptor.ExecutionMode[] values()
for (PipelineInterceptor.ExecutionMode c : PipelineInterceptor.ExecutionMode.values()) System.out.println(c);
public static PipelineInterceptor.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 nullCopyright © 2015 Geosparc. All Rights Reserved.