protected static enum AbstractTemplateProcessor.Action extends Enum<AbstractTemplateProcessor.Action>
Enum Constant and Description |
---|
ADDTO |
BIND_TO |
INSERT_AFTER |
INSERT_BEFORE |
REPLACE |
Modifier and Type | Method and Description |
---|---|
static AbstractTemplateProcessor.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractTemplateProcessor.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractTemplateProcessor.Action REPLACE
public static final AbstractTemplateProcessor.Action ADDTO
public static final AbstractTemplateProcessor.Action INSERT_BEFORE
public static final AbstractTemplateProcessor.Action INSERT_AFTER
public static final AbstractTemplateProcessor.Action BIND_TO
public static AbstractTemplateProcessor.Action[] values()
for (AbstractTemplateProcessor.Action c : AbstractTemplateProcessor.Action.values()) System.out.println(c);
public static AbstractTemplateProcessor.Action 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 © 2020. All rights reserved.