Java org.xml.sax XMLReader fields, constructors, methods, implement or subclass

Example usage for Java org.xml.sax XMLReader fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.xml.sax XMLReader.

The text is from its open source code.

Implementation

org.xml.sax.XMLReader has the following implementations.
Click this link to see all its implementation.

Method

ClassgetClass()
Returns the runtime class of this Object .
ContentHandlergetContentHandler()
Return the current content handler.
EntityResolvergetEntityResolver()
Return the current entity resolver.
ObjectgetProperty(String name)
Look up the value of a property.
voidparse(InputSource input)
Parse an XML document.
voidparse(String systemId)
Parse an XML document from a system identifier (URI).
voidsetContentHandler(ContentHandler handler)
Allow an application to register a content event handler.
voidsetDTDHandler(DTDHandler handler)
Allow an application to register a DTD event handler.
voidsetEntityResolver(EntityResolver resolver)
Allow an application to register an entity resolver.
voidsetErrorHandler(ErrorHandler handler)
Allow an application to register an error event handler.
voidsetFeature(String name, boolean value)
Set the value of a feature flag.
voidsetProperty(String name, Object value)
Set the value of a property.