public static enum RemovalHandler.Quantifier extends Enum<RemovalHandler.Quantifier>
| Enum Constant and Description |
|---|
ALL
Every SDT shall be removed.
|
ALL_BUT_PLACEHOLDERS
Ordinarily, if an SDT contains XML but no real content,
that XML is also removed.
|
ALL_BUT_PLACEHOLDERS_CONTENT
Ordinarily, if an SDT contains XML but no real content,
that XML is also removed.
|
DEFAULT
The default SDTs shall be removed, that is, condition and repeat.
|
NAMED
Named SDTs shall be removed, the names given separately.
|
| Modifier and Type | Method and Description |
|---|---|
static RemovalHandler.Quantifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemovalHandler.Quantifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemovalHandler.Quantifier ALL
public static final RemovalHandler.Quantifier ALL_BUT_PLACEHOLDERS_CONTENT
public static final RemovalHandler.Quantifier ALL_BUT_PLACEHOLDERS
public static final RemovalHandler.Quantifier DEFAULT
public static final RemovalHandler.Quantifier NAMED
public static RemovalHandler.Quantifier[] values()
for (RemovalHandler.Quantifier c : RemovalHandler.Quantifier.values()) System.out.println(c);
public static RemovalHandler.Quantifier 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 © 2007-2020. All Rights Reserved.