Skip navigation links
C D G I M N O R W X 

C

closeDocument() - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
closeDocument() - Method in interface org.amplecode.staxwax.writer.XMLWriter
Writes XML end tags to start tags which have not been terminated to output.
closeElement() - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
closeElement() - Method in interface org.amplecode.staxwax.writer.XMLWriter
Writes an XML end tag to output.
closeReader() - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
closeReader() - Method in interface org.amplecode.staxwax.reader.XMLReader
Closes the underlying reader.
closeWriter() - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
closeWriter() - Method in interface org.amplecode.staxwax.writer.XMLWriter
Closes the underlying writer.

D

DefaultXMLStreamReader - Class in org.amplecode.staxwax.reader
 
DefaultXMLStreamReader(XMLStreamReader) - Constructor for class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
DefaultXMLStreamWriter - Class in org.amplecode.staxwax.writer
 
DefaultXMLStreamWriter(XMLStreamWriter) - Constructor for class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 

G

getAttributeCount() - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
getAttributeCount() - Method in interface org.amplecode.staxwax.reader.XMLReader
Returns the count of attributes on this start element.
getAttributeValue(String) - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
getAttributeValue(String) - Method in interface org.amplecode.staxwax.reader.XMLReader
Reads the value of the XML attribute with the given name.
getElementName() - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
getElementName() - Method in interface org.amplecode.staxwax.reader.XMLReader
Reads the name of the current XML element.
getElementValue() - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
getElementValue() - Method in interface org.amplecode.staxwax.reader.XMLReader
Reads the value of the current XML element.
getText() - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
getXMLReader(InputStream) - Static method in class org.amplecode.staxwax.factory.XMLFactory
Creates an XMLReader from a StAX-based XMLStreamReader.
getXmlStreamReader() - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
getXmlStreamReader() - Method in interface org.amplecode.staxwax.reader.XMLReader
Provides the underlying XMLStreamReader.
getXmlStreamWriter() - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
getXmlStreamWriter() - Method in interface org.amplecode.staxwax.writer.XMLWriter
Provides the underlying XmlStreamWriter.
getXMLWriter(OutputStream) - Static method in class org.amplecode.staxwax.factory.XMLFactory
Creates an XMLWriter from a StAX-based XMLStreamWriter.

I

isEndElement(String) - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
isEndElement(String) - Method in interface org.amplecode.staxwax.reader.XMLReader
Checks whether the current XML element is an end element with the given name.
isStartElement(String) - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
isStartElement(String) - Method in interface org.amplecode.staxwax.reader.XMLReader
Checks whether the current XML element is a start element with the given name.

M

moveToStartElement(String) - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
moveToStartElement(String, String) - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
moveToStartElement(String) - Method in interface org.amplecode.staxwax.reader.XMLReader
Moves the cursor to the first XML start element with the given name in the document.
moveToStartElement(String, String) - Method in interface org.amplecode.staxwax.reader.XMLReader
Moves the cursor to the first XML start element with the given name in the document.

N

next() - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
next(String) - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
next() - Method in interface org.amplecode.staxwax.reader.XMLReader
Moves the cursor to the next XML element in the document.
next(String) - Method in interface org.amplecode.staxwax.reader.XMLReader
Moves the cursor to the next XML element in the document.

O

openDocument() - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
openDocument(String, String) - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
openDocument() - Method in interface org.amplecode.staxwax.writer.XMLWriter
Writes the XML declaration to output.
openDocument(String, String) - Method in interface org.amplecode.staxwax.writer.XMLWriter
Writes the XML declaration to ouput.
openElement(String) - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
openElement(String, String...) - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
openElement(String) - Method in interface org.amplecode.staxwax.writer.XMLWriter
Writes an XML start tag to output.
openElement(String, String...) - Method in interface org.amplecode.staxwax.writer.XMLWriter
Writes an XML start tag to output.
org.amplecode.staxwax - package org.amplecode.staxwax
 
org.amplecode.staxwax.factory - package org.amplecode.staxwax.factory
 
org.amplecode.staxwax.reader - package org.amplecode.staxwax.reader
 
org.amplecode.staxwax.writer - package org.amplecode.staxwax.writer
 

R

readAttributes() - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
readAttributes() - Method in interface org.amplecode.staxwax.reader.XMLReader
Reads attributes at the current start element and returns a mapping of attribute name sand values.
readElements(String) - Method in class org.amplecode.staxwax.reader.DefaultXMLStreamReader
 
readElements(String) - Method in interface org.amplecode.staxwax.reader.XMLReader
Reads values for all properties for an element into a Map, where the key is the property and the value is the value.

W

writeAttribute(String, String) - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
writeAttribute(String, String) - Method in interface org.amplecode.staxwax.writer.XMLWriter
Writes an XML attribute to output.
writeCData(String) - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
writeCData(String) - Method in interface org.amplecode.staxwax.writer.XMLWriter
Writes non-parsed character data to ouput.
writeCharacters(String) - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
writeCharacters(String) - Method in interface org.amplecode.staxwax.writer.XMLWriter
Writes characters to output.
writeElement(String, String) - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
writeElement(String, String, String...) - Method in class org.amplecode.staxwax.writer.DefaultXMLStreamWriter
 
writeElement(String, String) - Method in interface org.amplecode.staxwax.writer.XMLWriter
Writes an XML start tag, value, and end tag to ouput.
writeElement(String, String, String...) - Method in interface org.amplecode.staxwax.writer.XMLWriter
Writes an XML start tag with attributes, value, and end tag to ouput.

X

XMLException - Exception in org.amplecode.staxwax
 
XMLException(String) - Constructor for exception org.amplecode.staxwax.XMLException
 
XMLException(String, Throwable) - Constructor for exception org.amplecode.staxwax.XMLException
 
XMLFactory - Class in org.amplecode.staxwax.factory
This is a factory class which produces XMLWriter and XMLReader instances.
XMLFactory() - Constructor for class org.amplecode.staxwax.factory.XMLFactory
 
XMLReader - Interface in org.amplecode.staxwax.reader
This interface provides convenience methods for XML reading.
XMLWriter - Interface in org.amplecode.staxwax.writer
This interface provides convenience methods for XML writing.
C D G I M N O R W X 
Skip navigation links

Copyright © 2015 AmpleCode. All rights reserved.