public static enum XIncludeScheme.Option extends Enum<XIncludeScheme.Option>
Enum Constant and Description |
---|
ALLOW_ADVANCED_XPOINTER
If true, allow the use of the XPointer xpointer() Scheme;
otherwise only use the XPointer element() scheme;
Boolean.TRUE or Boolean.FALSE . |
SUPPORT_MULTIPLE_INSTANCES
If true, it is expected that the including document will contain
multiple instances of the inclusion returned by
XIncludeScheme.createSimpleInclusion(com.xmlmind.xml.doc.Node, com.xmlmind.xml.doc.Node, boolean, java.lang.String, java.util.Map<java.lang.Object, java.lang.Object>, com.xmlmind.xml.load.SimpleInclusion[]) . |
Modifier and Type | Method and Description |
---|---|
static XIncludeScheme.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XIncludeScheme.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XIncludeScheme.Option ALLOW_ADVANCED_XPOINTER
Boolean.TRUE
or Boolean.FALSE
.
Default: Boolean.FALSE
.
public static final XIncludeScheme.Option SUPPORT_MULTIPLE_INSTANCES
XIncludeScheme.createSimpleInclusion(com.xmlmind.xml.doc.Node, com.xmlmind.xml.doc.Node, boolean, java.lang.String, java.util.Map<java.lang.Object, java.lang.Object>, com.xmlmind.xml.load.SimpleInclusion[])
.public static XIncludeScheme.Option[] values()
for (XIncludeScheme.Option c : XIncludeScheme.Option.values()) System.out.println(c);
public static XIncludeScheme.Option 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 null