Interface FastInfosetStreamReader

  • All Known Implementing Classes:
    StAXDocumentParser

    public interface FastInfosetStreamReader
    Fast Infoset Stream Reader.

    This interface provides additional optimized methods to that of XMLStreamReader.

    • Method Detail

      • peekNext

        int peekNext()
              throws javax.xml.stream.XMLStreamException
        Peek at the next event.
        Returns:
        the event, which will be the same as that returned from #next.
        Throws:
        javax.xml.stream.XMLStreamException
      • accessNamespaceCount

        int accessNamespaceCount()
      • accessLocalName

        java.lang.String accessLocalName()
      • accessNamespaceURI

        java.lang.String accessNamespaceURI()
      • accessPrefix

        java.lang.String accessPrefix()
      • accessTextCharacters

        char[] accessTextCharacters()
        Returns a cloned char[] representation of the internal char[] buffer. So be careful, when using this method due to possible performance and memory inefficiency.
        Returns:
        a cloned char[] representation of the internal char[] buffer.
      • accessTextStart

        int accessTextStart()
      • accessTextLength

        int accessTextLength()