public enum RecursiveReplacement extends java.lang.Enum<RecursiveReplacement>
| Enum Constant and Description |
|---|
NO
Replaced content doesn't go through replacements.
|
ONLY_FOLLOWING
Only replacements that come after the replacement will process the replaced content.
|
YES
Replaced content is processed through all patterns until none match.
|
| Modifier and Type | Method and Description |
|---|---|
static RecursiveReplacement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecursiveReplacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecursiveReplacement NO
public static final RecursiveReplacement ONLY_FOLLOWING
public static final RecursiveReplacement YES
public static RecursiveReplacement[] values()
for (RecursiveReplacement c : RecursiveReplacement.values()) System.out.println(c);
public static RecursiveReplacement valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null