Java javax.xml.parsers DocumentBuilderFactory fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.parsers DocumentBuilderFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.parsers DocumentBuilderFactory.

The text is from its open source code.

Method

ClassgetClass()
Returns the runtime class of this Object .
booleanisExpandEntityReferences()
Indicates whether or not the factory is configured to produce parsers which expand entity reference nodes.
booleanisIgnoringComments()
Indicates whether or not the factory is configured to produce parsers which ignores comments.
booleanisIgnoringElementContentWhitespace()
Indicates whether or not the factory is configured to produce parsers which ignore ignorable whitespace in element content.
booleanisNamespaceAware()
Indicates whether or not the factory is configured to produce parsers which are namespace aware.
DocumentBuildernewDocumentBuilder()
Creates a new instance of a javax.xml.parsers.DocumentBuilder using the currently configured parameters.
DocumentBuilderFactorynewInstance()
Obtain a new instance of a DocumentBuilderFactory .
voidsetAttribute(String name, Object value)
Allows the user to set specific attributes on the underlying implementation.
voidsetCoalescing(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.
voidsetExpandEntityReferences(boolean expandEntityRef)
Specifies that the parser produced by this code will expand entity reference nodes.
voidsetFeature(String name, boolean value)
Set a feature for this DocumentBuilderFactory and DocumentBuilder s created by this factory.
voidsetIgnoringComments(boolean ignoreComments)
Specifies that the parser produced by this code will ignore comments.
voidsetIgnoringElementContentWhitespace(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).
voidsetNamespaceAware(boolean awareness)
Specifies that the parser produced by this code will provide support for XML namespaces.
voidsetSchema(Schema schema)
Set the Schema to be used by parsers created from this factory.
voidsetValidating(boolean validating)
Specifies that the parser produced by this code will validate documents as they are parsed.
voidsetXIncludeAware(final boolean state)
Set state of XInclude processing.