Example usage for Java javax.xml.parsers DocumentBuilderFactory fields, constructors, methods, implement or subclass
The text is from its open source code.
Class> | getClass() Returns the runtime class of this Object . |
boolean | isExpandEntityReferences() Indicates whether or not the factory is configured to produce parsers which expand entity reference nodes. |
boolean | isIgnoringComments() Indicates whether or not the factory is configured to produce parsers which ignores comments. |
boolean | isIgnoringElementContentWhitespace() Indicates whether or not the factory is configured to produce parsers which ignore ignorable whitespace in element content. |
boolean | isNamespaceAware() Indicates whether or not the factory is configured to produce parsers which are namespace aware. |
DocumentBuilder | newDocumentBuilder() Creates a new instance of a javax.xml.parsers.DocumentBuilder using the currently configured parameters. |
DocumentBuilderFactory | newInstance() Obtain a new instance of a DocumentBuilderFactory . |
void | setAttribute(String name, Object value) Allows the user to set specific attributes on the underlying implementation. |
void | setCoalescing(boolean coalescing) Specifies that the parser produced by this code will convert CDATA nodes to Text nodes and append it to the adjacent (if any) text node. |
void | setExpandEntityReferences(boolean expandEntityRef) Specifies that the parser produced by this code will expand entity reference nodes. |
void | setFeature(String name, boolean value) Set a feature for this DocumentBuilderFactory and DocumentBuilder s created by this factory. |
void | setIgnoringComments(boolean ignoreComments) Specifies that the parser produced by this code will ignore comments. |
void | setIgnoringElementContentWhitespace(boolean whitespace) Specifies that the parsers created by this factory must eliminate whitespace in element content (sometimes known loosely as 'ignorable whitespace') when parsing XML documents (see XML Rec 2.10). |
void | setNamespaceAware(boolean awareness) Specifies that the parser produced by this code will provide support for XML namespaces. |
void | setSchema(Schema schema) Set the Schema to be used by parsers created from this factory. |
void | setValidating(boolean validating) Specifies that the parser produced by this code will validate documents as they are parsed. |
void | setXIncludeAware(final boolean state) Set state of XInclude processing. |