| Home >> All >> gnu >> xml >> [ stream Javadoc ] |
gnu.xml.stream: Javadoc index of package gnu.xml.stream.
Package Samples:
gnu.xml.stream
Classes:
SAXParser: JAXP SAX parser using an underlying StAX parser. This parser supports the following additional SAX features and properties: Features http://gnu.org/sax/features/xml-base read/write Indicates or sets whether XML Base processing is enabled Properties http://gnu.org/sax/properties/base-uri read-only String Returns the base URI of the current event http://gnu.org/sax/properties/document-xml-encoding read-only String Returns the encoding specified in the XML declaration
XMLStreamReaderImpl: An XML parser. This implementation uses SAX to create a series of events in memory, and then iterates over this series. This has the advantage of being simple and unifying the existing XML parsing code. However, it is quite memory-inefficient and obviously won't cope with streams of arbitrary length. A future task could be to write a real, progressive/incremental implementation of this class. In that case we should consider making that the default XML parser implementation and using a SAX wrapper to it to provide the GNU SAX implementation.
XMLParser: An XML parser. This parser supports the following additional StAX properties: gnu.xml.stream.stringInterning Boolean Indicates whether markup strings will be interned gnu.xml.stream.xmlBase Boolean Indicates whether XML Base processing will be performed gnu.xml.stream.baseURI String Returns the base URI of the current event
LocationImpl: Information about the location of an XML event within the underlying stream.
SAXParserFactory: SAX parser factory providing a SAX compatibility layer on top of StAX.
UnicodeReader: A reader that converts UTF-16 characters to Unicode code points.
XMLInputFactoryImpl: Factory for creating parsers from various kinds of XML source.
XMLEventAllocatorImpl: Allocator for creating XML events based on a reader state.
XMLEventWriterImpl: Writer to write events to an underlying XML stream writer.
CRLFReader: Filtered reader that normalizes CRLF pairs into LFs.
XIncludeFilter: StAX filter for performing XInclude processing.
ProcessingInstructionImpl: A processing instruction event.
BufferedReader: A mark-capable buffered reader.
CharactersImpl: A character data (text) event.
NamespaceImpl: A namespace declaration event.
NotationDeclarationImpl: A notation declaration event.
DTDImpl: A DOCTYPE declaration event.
EntityDeclarationImpl: An entity declaration event.
EntityReferenceImpl: An entity reference event.
XMLStreamWriterImpl: Simple XML stream writer.
XMLEventReaderImpl: Parser using XML events.
| Home | Contact Us | Privacy Policy | Terms of Service |