Top Description Fields Constructors Methods
jdk.internal.util.xml.impl

public Class Input

extends Object
Class Inheritance
Imports
java.io.Reader

A parsed entity input state. This class represents a parsed entity input state. The parser uses an instance of this class to manage input.

Field Summary

Modifier and TypeField and Description
public char[]
chars

The character buffer.

public int
chIdx

The index of the next character to read.

public int
chLen

The length of the character buffer.

public Input
next

The next input in a chain.

public String
pubid

The entity public identifier or null.

public Reader
src

The entity reader.

public String
sysid

The entity system identifier or null.

public String
xmlenc

The encoding from XML declaration or null

public char
xmlver

The XML version from XML declaration or 0x0000

Constructor Summary

AccessConstructor and Description
public
Input(int
The input buffer size.
buffsize
)

Constructor.

public
Input(char[]
The input buffer.
buff
)

Constructor.

public
Input()

Constructor.

Method Summary

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

charsback to summary
public char[] chars

The character buffer.

chIdxback to summary
public int chIdx

The index of the next character to read.

chLenback to summary
public int chLen

The length of the character buffer.

nextback to summary
public Input next

The next input in a chain.

pubidback to summary
public String pubid

The entity public identifier or null.

srcback to summary
public Reader src

The entity reader.

sysidback to summary
public String sysid

The entity system identifier or null.

xmlencback to summary
public String xmlenc

The encoding from XML declaration or null

xmlverback to summary
public char xmlver

The XML version from XML declaration or 0x0000

Constructor Detail

Inputback to summary
public Input(int buffsize)

Constructor.

Parameters
buffsize:int

The input buffer size.

Inputback to summary
public Input(char[] buff)

Constructor.

Parameters
buff:char[]

The input buffer.

Inputback to summary
public Input()

Constructor.