public static enum ExecutionContext.TargetStack extends Enum<ExecutionContext.TargetStack>
| Enum Constant and Description |
|---|
CONTEXT
Context object stack
|
TEMPLATE_INVOCATION
Template invocations stack
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionContext.TargetStack |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionContext.TargetStack[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionContext.TargetStack CONTEXT
public static final ExecutionContext.TargetStack TEMPLATE_INVOCATION
public static ExecutionContext.TargetStack[] values()
for (ExecutionContext.TargetStack c : ExecutionContext.TargetStack.values()) System.out.println(c);
public static ExecutionContext.TargetStack 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. All Rights Reserved.