XMLWriter |
XMLWriter.endElement() |
Closes the last opened element at the current position in the in-progress
XML document.
|
XMLWriter |
XMLWriter.startElement(String element) |
Starts a new element with the specified name at the current position in
the in-progress XML document.
|
XMLWriter |
XMLWriter.value(Object obj) |
Adds the string representation of the specified object to the current
position of the in progress XML document.
|
XMLWriter |
XMLWriter.value(String s) |
Adds the specified value as text to the current position of the in
progress XML document.
|
XMLWriter |
XMLWriter.value(ByteBuffer b) |
Adds the specified value as Base64 encoded text to the current position of the in
progress XML document.
|
XMLWriter |
XMLWriter.value(Date date) |
Adds the specified date as text to the current position of the
in-progress XML document.
|