Object | getAttribute(String name) - Retrieves the named attribute value from the underlying implementation.
|
Schema | getSchema() - Returns the schema.
|
boolean | isCoalescing() - Indicates whether document builders obtained from this factory will
convert CDATA sections to text nodes and normalize adjacent text nodes
into a single text node.
|
boolean | isExpandEntityReferences() - Indicates whether document builders obtained from this factory will
expand entity reference nodes.
|
boolean | isIgnoringComments() - Indicates whether document builders obtained from this factory will
discard comment nodes.
|
boolean | isIgnoringElementContentWhitespace() - Indicates whether document builders obtained from this factory will
eliminate whitespace within elements that have an element-only content
model.
|
boolean | isNamespaceAware() - Indicates whether document builders obtained from this factory will be
XML Namespace aware.
|
boolean | isValidating() - Indicates whether document builders obtained from this factory will
validate their input.
|
boolean | isXIncludeAware() - Indicates whether parsers obtained from this factory will be XInclude
aware.
|
DocumentBuilder | newDocumentBuilder() - Creates a new document builder instance using the currently specified
factory configuration.
|
static DocumentBuilderFactory | newInstance() - Creates a new factory instance.
|
void | setAttribute(String name, Object value) - Set the named attribute on the underlying implementation.
|
void | setCoalescing(boolean coalescing) - Sets whether document builders obtained from this factory will convert
CDATA sections to text nodes and normalize adjacent text nodes into a
single text node.
|
void | setExpandEntityReferences(boolean expandEntityRef) - Sets whether document builders obtained from this factory will expand
entity reference nodes.
|
void | setIgnoringComments(boolean ignoreComments) - Sets whether document builders obtained from this factory will discard
comment nodes.
|
void | setIgnoringElementContentWhitespace(boolean whitespace) - Sets whether document builders obtained from this factory will
eliminate whitespace within elements that have an element-only content
model.
|
void | setNamespaceAware(boolean awareness) - Sets whether document builders obtained from this factory will be XML
Namespace aware.
|
void | setSchema(Schema schema) - Sets the schema.
|
void | setValidating(boolean validating) - Sets whether document builders obtained from this factory will validate
their input.
|
void | setXIncludeAware(boolean state) - Sets whether parsers obtained from this factory will be XInclude aware.
|