Uses of Interface
com.sun.xml.bind.v2.runtime.output.XmlOutput
-
Packages that use XmlOutput Package Description com.sun.xml.bind.v2.runtime Code that implements JAXBContext, Unmarshaller, and Marshaller.com.sun.xml.bind.v2.runtime.output Code that writes well-formed XML (XmlOutput
and its implementations}. -
-
Uses of XmlOutput in com.sun.xml.bind.v2.runtime
Methods in com.sun.xml.bind.v2.runtime that return XmlOutput Modifier and Type Method Description XmlOutput
MarshallerImpl. createWriter(java.io.OutputStream os)
XmlOutput
MarshallerImpl. createWriter(java.io.OutputStream os, java.lang.String encoding)
XmlOutput
MarshallerImpl. createWriter(java.io.Writer w)
XmlOutput
MarshallerImpl. createWriter(java.io.Writer w, java.lang.String encoding)
Methods in com.sun.xml.bind.v2.runtime with parameters of type XmlOutput Modifier and Type Method Description void
MarshallerImpl. marshal(java.lang.Object obj, XmlOutput output)
void
XMLSerializer. startDocument(XmlOutput out, boolean fragment, java.lang.String schemaLocation, java.lang.String noNsSchemaLocation)
Reset this object to write to the specified output.protected <T> void
MarshallerImpl. write(Name rootTagName, JaxBeanInfo<T> bi, T obj, XmlOutput out, java.lang.Runnable postInitAction)
Used byBridgeImpl
to write an arbitrary object as a fragment. -
Uses of XmlOutput in com.sun.xml.bind.v2.runtime.output
Classes in com.sun.xml.bind.v2.runtime.output that implement XmlOutput Modifier and Type Class Description class
C14nXmlOutput
XmlOutput
that generates canonical XML.class
DOMOutput
XmlOutput
implementation that does associative marshalling to DOM.class
FastInfosetStreamWriterOutput
XmlOutput
forStAXDocumentSerializer
.class
ForkXmlOutput
class
IndentingUTF8XmlOutput
UTF8XmlOutput
with indentation.class
MTOMXmlOutput
XmlOutput
decorator that supports MTOM.class
SAXOutput
XmlOutput
implementation that writes to SAXContentHandler
.class
StAXExStreamWriterOutput
XmlOutput
forXMLStreamWriterEx
.class
UTF8XmlOutput
XmlOutput
implementation specialized for UTF-8.class
XMLEventWriterOutput
XmlOutput
that writes to StAXXMLEventWriter
.class
XmlOutputAbstractImpl
Abstract implementation ofXmlOutput
Implements the optimal methods, where defer to the non-optimal methods.class
XMLStreamWriterOutput
XmlOutput
that writes to StAXXMLStreamWriter
.Methods in com.sun.xml.bind.v2.runtime.output that return XmlOutput Modifier and Type Method Description static XmlOutput
XMLStreamWriterOutput. create(javax.xml.stream.XMLStreamWriter out, JAXBContextImpl context, CharacterEscapeHandler escapeHandler)
Creates a newXmlOutput
from aXMLStreamWriter
.Methods in com.sun.xml.bind.v2.runtime.output with parameters of type XmlOutput Modifier and Type Method Description void
NamespaceContextImpl.Element. endElement(XmlOutput out)
void
NamespaceContextImpl.Element. startElement(XmlOutput out, java.lang.Object innerPeer)
Constructors in com.sun.xml.bind.v2.runtime.output with parameters of type XmlOutput Constructor Description ForkXmlOutput(XmlOutput lhs, XmlOutput rhs)
MTOMXmlOutput(XmlOutput next)
-