org.jvnet.fastinfoset.stax
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 Summary
 java.lang.String accessLocalName()
           
 int accessNamespaceCount()
           
 java.lang.String accessNamespaceURI()
           
 java.lang.String accessPrefix()
           
 char[] accessTextCharacters()
           
 int accessTextLength()
           
 int accessTextStart()
           
 int peekNext()
          Peek at the next event.
 

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()

accessTextStart

int accessTextStart()

accessTextLength

int accessTextLength()