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();
}
Returns the standard name of the encoding in use
Gets the allocator used by streams created with this factory
Unknown properties are always returned as false
Return string describing current position of parsers as
text 'STATE [seen %s...] @line:column'.
The reporter that will be set on any XMLStreamReader or XMLEventReader created by this factory instance.
The resolver that will be set on any XMLStreamReader or XMLEventReader created by this factory instance.