public static enum DocumentFactoryBuilder.TagPattern extends java.lang.Enum<DocumentFactoryBuilder.TagPattern>
| Enum Constant and Description |
|---|
BRACES
{{TAG}} pattern
|
BRACKETS
[[TAG]] pattern
|
CHEVRONS
<<TAG>> pattern
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentFactoryBuilder.TagPattern |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DocumentFactoryBuilder.TagPattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentFactoryBuilder.TagPattern BRACKETS
public static final DocumentFactoryBuilder.TagPattern BRACES
public static final DocumentFactoryBuilder.TagPattern CHEVRONS
public static DocumentFactoryBuilder.TagPattern[] values()
for (DocumentFactoryBuilder.TagPattern c : DocumentFactoryBuilder.TagPattern.values()) System.out.println(c);
public static DocumentFactoryBuilder.TagPattern 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