public static enum Transformation.Action extends Enum<Transformation.Action>
| Enum Constant and Description |
|---|
INSERT_CHILD
Add passed XML as child of the found node.
|
REMOVE
Remove the found node.
|
REPLACE
Replace the found node with passed XML.
|
| Modifier and Type | Method and Description |
|---|---|
static Transformation.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transformation.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transformation.Action REPLACE
public static final Transformation.Action REMOVE
public static final Transformation.Action INSERT_CHILD
public static Transformation.Action[] values()
for (Transformation.Action c : Transformation.Action.values()) System.out.println(c);
public static Transformation.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 © 2004–2017 XWiki. All rights reserved.