public enum ReplacementPattern extends Enum<ReplacementPattern>
| Enum Constant and Description |
|---|
DEFAULT
pattern is ${name}
|
DOUBLE_CURLY
pattern is {{name}}
|
| Modifier and Type | Method and Description |
|---|---|
Matcher |
matcher(String source) |
static ReplacementPattern |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplacementPattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplacementPattern DEFAULT
public static final ReplacementPattern DOUBLE_CURLY
public static ReplacementPattern[] values()
for (ReplacementPattern c : ReplacementPattern.values()) System.out.println(c);
public static ReplacementPattern 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 © 2023. All rights reserved.