Package org.greybird.xmliter

The xmliter package provides an API for processing XML data that is easier to use than SAX or DOM, performs almost as well as SAX, and works with large documents that won't fit into memory using DOM

See:
          Description

Interface Summary
SaxEventSource An incremental generator of SAX events.
XmlAttributes An iterator over the attributes of an XML element.
XmlIterator An iterator for traversing the elements and text of an XML document.
 

Class Summary
DomIterator An XmlIterator that obtains its data from a DOM tree.
SaxIterator An XmlIterator that obtains its data from a SaxEventSource.
ThreadedSaxEventSource A SaxEventSource that uses a separate thread to run a SAX parser.
XercesSaxEventSource A SaxEventSource for incremental parsers using the Xerces Native Interface.
 

Exception Summary
XmlIteratorException A input data processing problem that occured during XML iteration and is not an IOException or an Error.
 

Package org.greybird.xmliter Description

The xmliter package provides an API for processing XML data that is easier to use than SAX or DOM, performs almost as well as SAX, and works with large documents that won't fit into memory using DOM

A good starting point is the XmlIterator interface. Also see the main index page.


Copyright (c) 2003 Mark T. Hayes; All Rights Reserved