API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.xml.stream.util. StreamReaderDelegate View Source
Author(s)
Copyright (c) 2003 by BEA Systems. All Rights Reserved.
Since
1.6
Version
1.0
Serial
Hierarchy
 Object
      StreamReaderDelegate
Implements
 XMLStreamReader
Subclasses
Description
public class StreamReaderDelegate
  This is the base class for deriving an XMLStreamReader filter This class is designed to sit between an XMLStreamReader and an application's XMLStreamReader.
Constructors
public StreamReaderDelegate ()
Construct an empty filter with no parent.
public StreamReaderDelegate (XMLStreamReader reader)
  Construct an filter with the specified parent.
Methods
Hide/Show inherited methods
public void close () throws XMLStreamException [Specified in XMLStreamReader]
public int getAttributeCount () [Specified in XMLStreamReader]
public String getAttributeLocalName (int index) [Specified in XMLStreamReader]
public QName getAttributeName (int index) [Specified in XMLStreamReader]
public String getAttributeNamespace (int index) [Specified in XMLStreamReader]
public String getAttributePrefix (int index) [Specified in XMLStreamReader]
public String getAttributeType (int index) [Specified in XMLStreamReader]
public String getAttributeValue (int index) [Specified in XMLStreamReader]
public String getAttributeValue (String namespaceUri, String localName) [Specified in XMLStreamReader]
public String getCharacterEncodingScheme () [Specified in XMLStreamReader]
public String getElementText () throws XMLStreamException [Specified in XMLStreamReader]
public String getEncoding () [Specified in XMLStreamReader]
public int getEventType () [Specified in XMLStreamReader]
public String getLocalName () [Specified in XMLStreamReader]
public Location getLocation () [Specified in XMLStreamReader]
public QName getName () [Specified in XMLStreamReader]
public NamespaceContext getNamespaceContext () [Specified in XMLStreamReader]
public int getNamespaceCount () [Specified in XMLStreamReader]
public String getNamespacePrefix (int index) [Specified in XMLStreamReader]
public String getNamespaceURI () [Specified in XMLStreamReader]
public String getNamespaceURI (int index) [Specified in XMLStreamReader]
public String getNamespaceURI (String prefix) [Specified in XMLStreamReader]
public XMLStreamReader getParent ()
  Get the parent of this instance.
public String getPIData () [Specified in XMLStreamReader]
public String getPITarget () [Specified in XMLStreamReader]
public String getPrefix () [Specified in XMLStreamReader]
public Object getProperty (String name) [Specified in XMLStreamReader]
public String getText () [Specified in XMLStreamReader]
public char getTextCharacters () [Specified in XMLStreamReader]
public int getTextCharacters (int sourceStart, char[] target, int targetStart, int length) throws XMLStreamException [Specified in XMLStreamReader]
public int getTextLength () [Specified in XMLStreamReader]
public int getTextStart () [Specified in XMLStreamReader]
public String getVersion () [Specified in XMLStreamReader]
public boolean hasName () [Specified in XMLStreamReader]
public boolean hasNext () throws XMLStreamException [Specified in XMLStreamReader]
public boolean hasText () [Specified in XMLStreamReader]
public boolean isAttributeSpecified (int index) [Specified in XMLStreamReader]
public boolean isCharacters () [Specified in XMLStreamReader]
public boolean isEndElement () [Specified in XMLStreamReader]
public boolean isStandalone () [Specified in XMLStreamReader]
public boolean isStartElement () [Specified in XMLStreamReader]
public boolean isWhiteSpace () [Specified in XMLStreamReader]
public int next () throws XMLStreamException [Specified in XMLStreamReader]
public int nextTag () throws XMLStreamException [Specified in XMLStreamReader]
public void require (int type, String namespaceURI, String localName) throws XMLStreamException [Specified in XMLStreamReader]
public void setParent (XMLStreamReader reader)
  Set the parent of this instance.
public boolean standaloneSet () [Specified in XMLStreamReader]
Fields
Hide/Show inherited fields
publicfinalstatic int ATTRIBUTE = "10" [Inherited From XMLStreamReader]
  Indicates an event is an attribute
publicfinalstatic int CDATA = "12" [Inherited From XMLStreamReader]
  Indicates an event is a CDATA section
publicfinalstatic int CHARACTERS = "4" [Inherited From XMLStreamReader]
  Indicates an event is characters
publicfinalstatic int COMMENT = "5" [Inherited From XMLStreamReader]
  Indicates an event is a comment
publicfinalstatic int DTD = "11" [Inherited From XMLStreamReader]
  Indicates an event is a DTD
publicfinalstatic int END_DOCUMENT = "8" [Inherited From XMLStreamReader]
  Indicates an event is an end document
publicfinalstatic int END_ELEMENT = "2" [Inherited From XMLStreamReader]
  Indicates an event is an end element
publicfinalstatic int ENTITY_DECLARATION = "15" [Inherited From XMLStreamReader]
  Indicates a Entity Declaration
publicfinalstatic int ENTITY_REFERENCE = "9" [Inherited From XMLStreamReader]
  Indicates an event is an entity reference
publicfinalstatic int NAMESPACE = "13" [Inherited From XMLStreamReader]
  Indicates the event is a namespace declaration
publicfinalstatic int NOTATION_DECLARATION = "14" [Inherited From XMLStreamReader]
  Indicates a Notation
publicfinalstatic int PROCESSING_INSTRUCTION = "3" [Inherited From XMLStreamReader]
  Indicates an event is a processing instruction
publicfinalstatic int SPACE = "6" [Inherited From XMLStreamReader]
  The characters are white space (see [XML], 2.10 "White Space Handling").
publicfinalstatic int START_DOCUMENT = "7" [Inherited From XMLStreamReader]
  Indicates an event is a start document
publicfinalstatic int START_ELEMENT = "1" [Inherited From XMLStreamReader]
  Indicates an event is a start element
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar