Uses of Interface
javax.xml.stream.XMLEventWriter
-
Packages that use XMLEventWriter 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.bindinterfaces.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 XMLEventWriter in javax.xml.bind
Methods in javax.xml.bind with parameters of type XMLEventWriter Modifier and Type Method Description voidMarshaller. marshal(Object jaxbElement, XMLEventWriter writer)Marshal the content tree rooted atjaxbElementinto aXMLEventWriter. -
Uses of XMLEventWriter in javax.xml.bind.helpers
Methods in javax.xml.bind.helpers with parameters of type XMLEventWriter Modifier and Type Method Description voidAbstractMarshallerImpl. marshal(Object obj, XMLEventWriter writer) -
Uses of XMLEventWriter in javax.xml.stream
Methods in javax.xml.stream that return XMLEventWriter Modifier and Type Method Description abstract XMLEventWriterXMLOutputFactory. createXMLEventWriter(OutputStream stream)Create a new XMLEventWriter that writes to a streamabstract XMLEventWriterXMLOutputFactory. createXMLEventWriter(OutputStream stream, String encoding)Create a new XMLEventWriter that writes to a streamabstract XMLEventWriterXMLOutputFactory. createXMLEventWriter(Writer stream)Create a new XMLEventWriter that writes to a writerabstract XMLEventWriterXMLOutputFactory. createXMLEventWriter(Result result)Create a new XMLEventWriter that writes to a JAXP result. -
Uses of XMLEventWriter in javax.xml.transform.stax
Methods in javax.xml.transform.stax that return XMLEventWriter Modifier and Type Method Description XMLEventWriterStAXResult. getXMLEventWriter()Get theXMLEventWriterused by thisStAXResult.Constructors in javax.xml.transform.stax with parameters of type XMLEventWriter Constructor Description StAXResult(XMLEventWriter xmlEventWriter)Creates a new instance of aStAXResultby supplying anXMLEventWriter.
-