Enum NestedSmooksVisitor.Action
- java.lang.Object
-
- java.lang.Enum<NestedSmooksVisitor.Action>
-
- org.smooks.engine.resource.visitor.smooks.NestedSmooksVisitor.Action
-
- All Implemented Interfaces:
Serializable
,Comparable<NestedSmooksVisitor.Action>
- Enclosing class:
- NestedSmooksVisitor
public static enum NestedSmooksVisitor.Action extends Enum<NestedSmooksVisitor.Action>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPEND_AFTER
APPEND_BEFORE
BIND_TO
OUTPUT_TO
PREPEND_AFTER
PREPEND_BEFORE
REPLACE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NestedSmooksVisitor.Action
valueOf(String name)
Returns the enum constant of this type with the specified name.static NestedSmooksVisitor.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REPLACE
public static final NestedSmooksVisitor.Action REPLACE
-
PREPEND_BEFORE
public static final NestedSmooksVisitor.Action PREPEND_BEFORE
-
PREPEND_AFTER
public static final NestedSmooksVisitor.Action PREPEND_AFTER
-
APPEND_BEFORE
public static final NestedSmooksVisitor.Action APPEND_BEFORE
-
APPEND_AFTER
public static final NestedSmooksVisitor.Action APPEND_AFTER
-
BIND_TO
public static final NestedSmooksVisitor.Action BIND_TO
-
OUTPUT_TO
public static final NestedSmooksVisitor.Action OUTPUT_TO
-
-
Method Detail
-
values
public static NestedSmooksVisitor.Action[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (NestedSmooksVisitor.Action c : NestedSmooksVisitor.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NestedSmooksVisitor.Action valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-