API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.xml.stream. XMLStreamWriter View Source
Author(s)
Copyright (c) 2003 by BEA Systems. All Rights Reserved.
Since
1.6
Version
1.0
Serial
Hierarchy
 XMLStreamWriter
Subinterfaces
Description
public interface XMLStreamWriter
  The XMLStreamWriter interface specifies how to write XML.
Methods
Hide/Show inherited methods
public void close () throws XMLStreamException
  Close this writer and free any resources associated with the writer.
public void flush () throws XMLStreamException
  Write any cached data to the underlying output mechanism.
public NamespaceContext getNamespaceContext ()
  Returns the current namespace context.
public String getPrefix (String uri) throws XMLStreamException
  Gets the prefix the uri is bound to
public Object getProperty (String name) throws IllegalArgumentException
  Get the value of a feature/property from the underlying implementation
public void setDefaultNamespace (String uri) throws XMLStreamException
  Binds a URI to the default namespace This URI is bound in the scope of the current START_ELEMENT / END_ELEMENT pair.
public void setNamespaceContext (NamespaceContext context) throws XMLStreamException
  Sets the current namespace context for prefix and uri bindings.
public void setPrefix (String prefix, String uri) throws XMLStreamException
  Sets the prefix the uri is bound to.
public void writeAttribute (String localName, String value) throws XMLStreamException
  Writes an attribute to the output stream without a prefix.
public void writeAttribute (String namespaceURI, String localName, String value) throws XMLStreamException
  Writes an attribute to the output stream
public void writeAttribute (String prefix, String namespaceURI, String localName, String value) throws XMLStreamException
  Writes an attribute to the output stream
public void writeCData (String data) throws XMLStreamException
  Writes a CData section
public void writeCharacters (char[] text, int start, int len) throws XMLStreamException
  Write text to the output
public void writeCharacters (String text) throws XMLStreamException
  Write text to the output
public void writeComment (String data) throws XMLStreamException
  Writes an xml comment with the data enclosed
public void writeDefaultNamespace (String namespaceURI) throws XMLStreamException
  Writes the default namespace to the stream
public void writeDTD (String dtd) throws XMLStreamException
  Write a DTD section.
public void writeEmptyElement (String localName) throws XMLStreamException
  Writes an empty element tag to the output
public void writeEmptyElement (String namespaceURI, String localName) throws XMLStreamException
  Writes an empty element tag to the output
public void writeEmptyElement (String prefix, String localName, String namespaceURI) throws XMLStreamException
  Writes an empty element tag to the output
public void writeEndDocument () throws XMLStreamException
  Closes any start tags and writes corresponding end tags.
public void writeEndElement () throws XMLStreamException
  Writes an end tag to the output relying on the internal state of the writer to determine the prefix and local name of the event.
public void writeEntityRef (String name) throws XMLStreamException
  Writes an entity reference
public void writeNamespace (String prefix, String namespaceURI) throws XMLStreamException
  Writes a namespace to the output stream If the prefix argument to this method is the empty string, "xmlns", or null this method will delegate to writeDefaultNamespace
public void writeProcessingInstruction (String target) throws XMLStreamException
  Writes a processing instruction
public void writeProcessingInstruction (String target, String data) throws XMLStreamException
  Writes a processing instruction
public void writeStartDocument () throws XMLStreamException
  Write the XML Declaration.
public void writeStartDocument (String version) throws XMLStreamException
  Write the XML Declaration.
public void writeStartDocument (String encoding, String version) throws XMLStreamException
  Write the XML Declaration.
public void writeStartElement (String localName) throws XMLStreamException
  Writes a start tag to the output.
public void writeStartElement (String namespaceURI, String localName) throws XMLStreamException
  Writes a start tag to the output
public void writeStartElement (String prefix, String localName, String namespaceURI) throws XMLStreamException
  Writes a start tag to the output
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar