public static enum XBProjector.Flags extends Enum<XBProjector.Flags>
Enum Constant and Description |
---|
ABSENT_IS_EMPTY
If a node is not present, handle it like it is empty.
|
OMIT_EMPTY_NODES
Option to strip empty nodes from the result.
|
SYNCHRONIZE_ON_DOCUMENTS
Enables thread safety by removing concurrent DOM access.
|
TO_STRING_RENDERS_XML
Let the projections toString() method render the projection target as XML.
|
Modifier and Type | Method and Description |
---|---|
static XBProjector.Flags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XBProjector.Flags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XBProjector.Flags SYNCHRONIZE_ON_DOCUMENTS
public static final XBProjector.Flags TO_STRING_RENDERS_XML
public static final XBProjector.Flags OMIT_EMPTY_NODES
public static final XBProjector.Flags ABSENT_IS_EMPTY
public static XBProjector.Flags[] values()
for (XBProjector.Flags c : XBProjector.Flags.values()) System.out.println(c);
public static XBProjector.Flags 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 © 2012-12-21-2017. All Rights Reserved.