Uses of Interface
javax.xml.stream.XMLStreamWriter
-
Packages that use XMLStreamWriter Package Description javax.xml.bind Provides a runtime binding framework for client applications including unmarshalling, marshalling, and validation capabilities.javax.xml.bind.helpers JAXB Provider Use Only: Provides partial default implementations for some of thejavax.xml.bind
interfaces.javax.xml.stream Defines interfaces and classes for the Streaming API for XML (StAX).javax.xml.transform.stax Provides StAX specific transformation classes. -
-
Uses of XMLStreamWriter in javax.xml.bind
Methods in javax.xml.bind with parameters of type XMLStreamWriter Modifier and Type Method Description void
Marshaller. marshal(Object jaxbElement, XMLStreamWriter writer)
Marshal the content tree rooted atjaxbElement
into aXMLStreamWriter
. -
Uses of XMLStreamWriter in javax.xml.bind.helpers
Methods in javax.xml.bind.helpers with parameters of type XMLStreamWriter Modifier and Type Method Description void
AbstractMarshallerImpl. marshal(Object obj, XMLStreamWriter writer)
-
Uses of XMLStreamWriter in javax.xml.stream
Methods in javax.xml.stream that return XMLStreamWriter Modifier and Type Method Description abstract XMLStreamWriter
XMLOutputFactory. createXMLStreamWriter(OutputStream stream)
Create a new XMLStreamWriter that writes to a streamabstract XMLStreamWriter
XMLOutputFactory. createXMLStreamWriter(OutputStream stream, String encoding)
Create a new XMLStreamWriter that writes to a streamabstract XMLStreamWriter
XMLOutputFactory. createXMLStreamWriter(Writer stream)
Create a new XMLStreamWriter that writes to a writerabstract XMLStreamWriter
XMLOutputFactory. createXMLStreamWriter(Result result)
Create a new XMLStreamWriter that writes to a JAXP result. -
Uses of XMLStreamWriter in javax.xml.transform.stax
Methods in javax.xml.transform.stax that return XMLStreamWriter Modifier and Type Method Description XMLStreamWriter
StAXResult. getXMLStreamWriter()
Get theXMLStreamWriter
used by thisStAXResult
.Constructors in javax.xml.transform.stax with parameters of type XMLStreamWriter Constructor Description StAXResult(XMLStreamWriter xmlStreamWriter)
Creates a new instance of aStAXResult
by supplying anXMLStreamWriter
.
-