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

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

Introduction

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

The text is from its open source code.

Subclass

org.xml.sax.InputSource has subclasses.
Click this link to see all its subclasses.

Constructor

InputSource(String systemId)
Create a new input source with a system identifier.
InputSource(InputStream byteStream)
Create a new input source with a byte stream.
InputSource(Reader characterStream)
Create a new input source with a character stream.
InputSource()
Zero-argument default constructor.

Method

InputStreamgetByteStream()
Get the byte stream for this input source.
ReadergetCharacterStream()
Get the character stream for this input source.
StringgetEncoding()
Get the character encoding for a byte stream or URI.
StringgetPublicId()
Get the public identifier for this input source.
StringgetSystemId()
Get the system identifier for this input source.
voidsetByteStream(InputStream byteStream)
Set the byte stream for this input source.
voidsetCharacterStream(Reader characterStream)
Set the character stream for this input source.
voidsetEncoding(String encoding)
Set the character encoding, if known.
voidsetPublicId(String publicId)
Set the public identifier for this input source.
voidsetSystemId(String systemId)
Set the system identifier for this input source.
StringtoString()
Returns a string representation of the object.