public static enum DocumentFactoryBuilder.RemovalOption extends java.lang.Enum<DocumentFactoryBuilder.RemovalOption>
Enum Constant and Description |
---|
AFTER
Remove tag from XML after calling the plugin.
|
BEFORE
Remove tag from XML before calling the plugin
|
MANUAL
In cases where we need to have absolute control over tag removal we can remove it manually from XML.
|
Modifier and Type | Method and Description |
---|---|
static DocumentFactoryBuilder.RemovalOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DocumentFactoryBuilder.RemovalOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentFactoryBuilder.RemovalOption BEFORE
public static final DocumentFactoryBuilder.RemovalOption AFTER
public static final DocumentFactoryBuilder.RemovalOption MANUAL
public static DocumentFactoryBuilder.RemovalOption[] values()
for (DocumentFactoryBuilder.RemovalOption c : DocumentFactoryBuilder.RemovalOption.values()) System.out.println(c);
public static DocumentFactoryBuilder.RemovalOption 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