Uses of Class
com.amazonaws.util.XMLWriter

Packages that use XMLWriter
Package
Description
 
  • Uses of XMLWriter in com.amazonaws.util

    Methods in com.amazonaws.util that return XMLWriter
    Modifier and Type
    Method
    Description
    XMLWriter.endElement()
    Closes the last opened element at the current position in the in-progress XML document.
    XMLWriter.startElement(String element)
    Starts a new element with the specified name at the current position in the in-progress XML document.
    XMLWriter.value(Object obj)
    Adds the string representation of the specified object to the current position of the in progress XML document.
    XMLWriter.value(String s)
    Adds the specified value as text to the current position of the in progress XML document.
    XMLWriter.value(ByteBuffer b)
    Adds the specified value as Base64 encoded text to the current position of the in progress XML document.
    XMLWriter.value(Date date)
    Adds the specified date as text to the current position of the in-progress XML document.