com.bea.xml.stream
public class ReaderDelegate extends Object implements XMLStreamReader
An implementation of the ReaderDelegate class
| Constructor Summary | |
|---|---|
| ReaderDelegate(XMLStreamReader reader) | |
| Method Summary | |
|---|---|
| void | close() |
| int | getAttributeCount() |
| String | getAttributeLocalName(int index) |
| QName | getAttributeName(int index) |
| String | getAttributeNamespace(int index) |
| String | getAttributePrefix(int index) |
| String | getAttributeType(int index) |
| String | getAttributeValue(String namespaceUri, String localName) 8
public boolean moveToStartElement()
throws XMLStreamException
{
return reader.moveToStartElement();
}
public boolean moveToStartElement(String localName)
throws XMLStreamException
{
return reader.moveToStartElement(localName);
}
public boolean moveToStartElement(String localName, String namespaceUri)
throws XMLStreamException
{
return reader.moveToStartElement(localName,namespaceUri);
}
public boolean moveToEndElement()
throws XMLStreamException
{
return reader.moveToEndElement();
}
public boolean moveToEndElement(String localName)
throws XMLStreamException
{
return reader.moveToEndElement(localName);
}
public boolean moveToEndElement(String localName, String namespaceUri)
throws XMLStreamException
{
return reader.moveToEndElement(localName,namespaceUri);
}
public boolean hasAttributes() {
return reader.hasAttributes();
}
public boolean hasNamespaces() {
return reader.hasNamespaces();
}
|
| String | getAttributeValue(int index) |
| String | getCharacterEncodingScheme() |
| XMLStreamReader | getDelegate() |
| String | getElementText() |
| String | getEncoding() |
| int | getEventType() |
| String | getLocalName() |
| Location | getLocation() |
| QName | getName() |
| NamespaceContext | getNamespaceContext() |
| int | getNamespaceCount() |
| String | getNamespacePrefix(int index) |
| String | getNamespaceURI(String prefix) |
| String | getNamespaceURI(int index) |
| String | getNamespaceURI() |
| String | getPIData() |
| String | getPITarget() |
| String | getPrefix() |
| Object | getProperty(String name) |
| String | getText() |
| int | getTextCharacters(int sourceStart, char[] target, int targetStart, int length) |
| char[] | getTextCharacters() |
| int | getTextLength() |
| int | getTextStart() |
| String | getVersion() |
| boolean | hasName() |
| boolean | hasNext() |
| boolean | hasText() |
| boolean | isAttributeSpecified(int index) |
| boolean | isCharacters() |
| boolean | isEndElement() |
| boolean | isStandalone() |
| boolean | isStartElement() |
| boolean | isWhiteSpace() |
| int | next() |
| int | nextTag() |
| void | require(int type, String namespaceURI, String localName) |
| void | setDelegate(XMLStreamReader reader) |
| boolean | standaloneSet() |