This class provides a real-time SAX2-like XML parser; this parser is
extremely fast and does not create temporary objects
(no garbage generated and no GC interruption).
The parser is implemented as a SAX2 wrapper around
XMLStreamReaderImpl and share the same characteristics.
Note: This parser is a SAX2-like parser with the
java.lang.String type replaced by
CharArray /
CharSequence in the
ContentHandler ,
Attributes interfaces and
DefaultHandler base class.
If a standard SAX2 or JAXP parser is required, you may consider using
the wrapping class
SAX2ReaderImpl . |