Uses of Interface
javax.xml.transform.Result
-
Packages that use Result Package Description java.sql Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java™ programming language.javax.xml.bind Provides a runtime binding framework for client applications including unmarshalling, marshalling, and validation capabilities.javax.xml.bind.annotation Defines annotations for customizing Java program elements to XML Schema mapping.javax.xml.bind.util Useful client utility classes.javax.xml.soap Provides the API for creating and building SOAP messages.javax.xml.stream Defines interfaces and classes for the Streaming API for XML (StAX).javax.xml.transform Defines the generic APIs for processing transformation instructions, and performing a transformation from source to result.javax.xml.transform.dom Provides DOM specific transformation classes.javax.xml.transform.sax Provides SAX specific transformation classes.javax.xml.transform.stax Provides StAX specific transformation classes.javax.xml.transform.stream Provides stream and URI specific transformation classes.javax.xml.validation Provides an API for validation of XML documents.javax.xml.ws This package contains the core JAX-WS APIs.javax.xml.ws.wsaddressing This package defines APIs related to WS-Addressing. -
-
Uses of Result in java.sql
Methods in java.sql with type parameters of type Result Modifier and Type Method Description <T extends Result>
TSQLXML. setResult(Class<T> resultClass)
Returns a Result for setting the XML value designated by this SQLXML instance. -
Uses of Result in javax.xml.bind
Methods in javax.xml.bind that return Result Modifier and Type Method Description abstract Result
SchemaOutputResolver. createOutput(String namespaceUri, String suggestedFileName)
Decides where the schema file (of the given namespace URI) will be written, and return it as aResult
object.Methods in javax.xml.bind with parameters of type Result Modifier and Type Method Description static void
JAXB. marshal(Object jaxbObject, Result xml)
Writes a Java object tree to XML and store it to the specified location.void
Marshaller. marshal(Object jaxbElement, Result result)
Marshal the content tree rooted atjaxbElement
into the specifiedjavax.xml.transform.Result
. -
Uses of Result in javax.xml.bind.annotation
Classes in javax.xml.bind.annotation with type parameters of type Result Modifier and Type Interface Description interface
DomHandler<ElementT,ResultT extends Result>
Converts an element (and its descendants) from/to DOM (or similar) representation. -
Uses of Result in javax.xml.bind.util
Classes in javax.xml.bind.util that implement Result Modifier and Type Class Description class
JAXBResult
JAXPResult
implementation that unmarshals a JAXB object. -
Uses of Result in javax.xml.soap
Classes in javax.xml.soap that implement Result Modifier and Type Class Description class
SAAJResult
Acts as a holder for the results of a JAXP transformation or a JAXB marshalling, in the form of a SAAJ tree. -
Uses of Result in javax.xml.stream
Methods in javax.xml.stream with parameters of type Result Modifier and Type Method Description abstract XMLEventWriter
XMLOutputFactory. createXMLEventWriter(Result result)
Create a new XMLEventWriter that writes to a JAXP result.abstract XMLStreamWriter
XMLOutputFactory. createXMLStreamWriter(Result result)
Create a new XMLStreamWriter that writes to a JAXP result. -
Uses of Result in javax.xml.transform
Methods in javax.xml.transform with parameters of type Result Modifier and Type Method Description abstract void
Transformer. transform(Source xmlSource, Result outputTarget)
Transform the XMLSource
to aResult
. -
Uses of Result in javax.xml.transform.dom
Classes in javax.xml.transform.dom that implement Result Modifier and Type Class Description class
DOMResult
Acts as a holder for a transformation result tree in the form of a Document Object Model (DOM) tree. -
Uses of Result in javax.xml.transform.sax
Classes in javax.xml.transform.sax that implement Result Modifier and Type Class Description class
SAXResult
Acts as an holder for a transformation Result.Methods in javax.xml.transform.sax with parameters of type Result Modifier and Type Method Description void
TransformerHandler. setResult(Result result)
Set theResult
associated with thisTransformerHandler
to be used for the transformation. -
Uses of Result in javax.xml.transform.stax
Classes in javax.xml.transform.stax that implement Result Modifier and Type Class Description class
StAXResult
Acts as a holder for an XMLResult
in the form of a StAX writer,i.e. -
Uses of Result in javax.xml.transform.stream
Classes in javax.xml.transform.stream that implement Result Modifier and Type Class Description class
StreamResult
Acts as an holder for a transformation result, which may be XML, plain Text, HTML, or some other form of markup. -
Uses of Result in javax.xml.validation
Methods in javax.xml.validation with parameters of type Result Modifier and Type Method Description abstract void
Validator. validate(Source source, Result result)
Validates the specified input and send the augmented validation result to the specified output. -
Uses of Result in javax.xml.ws
Methods in javax.xml.ws with parameters of type Result Modifier and Type Method Description abstract void
EndpointReference. writeTo(Result result)
write thisEndpointReference
to the specified infoset format -
Uses of Result in javax.xml.ws.wsaddressing
Methods in javax.xml.ws.wsaddressing with parameters of type Result Modifier and Type Method Description void
W3CEndpointReference. writeTo(Result result)
write thisEndpointReference
to the specified infoset format
-