public interface CharacterHandler
Modifier and Type | Method and Description |
---|---|
void |
characters(char[] ch,
int start,
int length)
Receive notification of a run of UTF-16 code units.
|
void |
end()
Signals the end of the stream.
|
void |
start()
Signals the start of the stream.
|
void characters(char[] ch, int start, int length) throws org.xml.sax.SAXException
ch
- the bufferstart
- start index in the bufferlength
- the number of characters to process starting from start
org.xml.sax.SAXException
- if things go wrongvoid end() throws org.xml.sax.SAXException
org.xml.sax.SAXException
- if things go wrongvoid start() throws org.xml.sax.SAXException
org.xml.sax.SAXException
- if things go wrong