Java org.jdom2.input SAXBuilder fields, constructors, methods, implement or subclass

Example usage for Java org.jdom2.input SAXBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.jdom2.input SAXBuilder.

The text is from its open source code.

Subclass

org.jdom2.input.SAXBuilder has subclasses.
Click this link to see all its subclasses.

Constructor

SAXBuilder()
Creates a new JAXP-based SAXBuilder.
SAXBuilder(final boolean validate)
Creates a new JAXP-based SAXBuilder.
SAXBuilder(final String saxDriverClass)
Creates a new SAXBuilder using the specified SAX parser.
SAXBuilder(final XMLReaderJDOMFactory readersouce)
Creates a new SAXBuilder with the specified XMLReaderJDOMFactory.
SAXBuilder(final String saxDriverClass, final boolean validate)
Creates a new SAXBuilder using the specified SAX2.0 parser source.
SAXBuilder(final XMLReaderJDOMFactory xmlreaderfactory, final SAXHandlerFactory handlerfactory, final JDOMFactory jdomfactory)
Creates a new SAXBuilder.

Method

Documentbuild(final InputSource in)
This builds a document from the supplied input source.
Documentbuild(final InputStream in)

This builds a document from the supplied input stream.

Documentbuild(final File file)

This builds a document from the supplied filename.

Documentbuild(final URL url)

This builds a document from the supplied URL.

Documentbuild(final Reader characterStream)

This builds a document from the supplied Reader.

Documentbuild(final String systemId)

This builds a document from the supplied URI.

Documentbuild(final InputStream in, final String systemId)

This builds a document from the supplied input stream.

Documentbuild(final Reader characterStream, final String systemId)

This builds a document from the supplied Reader.

XMLReadercreateParser()
Allow overriding classes access to the Parser before it is used in a SAXBuilderEngine.
voidsetEntityResolver(final EntityResolver entityResolver)
This sets custom EntityResolver for the Builder.
voidsetErrorHandler(final ErrorHandler errorHandler)
This sets custom ErrorHandler for the Builder.
voidsetExpandEntities(final boolean expand)

This sets whether or not to expand entities for the builder.

voidsetFeature(final String name, final boolean value)
This sets a feature on the SAX parser.
voidsetIgnoringElementContentWhitespace(final boolean ignoringWhite)
Specifies whether or not the parser should eliminate whitespace in element content (sometimes known as "ignorable whitespace") when building the document.
voidsetJDOMFactory(final JDOMFactory factory)
This sets a custom JDOMFactory for the builder.
voidsetProperty(final String name, final Object value)
This sets a property on the SAX parser.
voidsetSAXHandlerFactory(final SAXHandlerFactory factory)
Set the SAXHandlerFactory to be used by this SAXBuilder.
voidsetValidation(final boolean validate)
This sets validation for the builder.
voidsetXMLReaderFactory(final XMLReaderJDOMFactory rfac)
Set the current XMLReader factory.