Uses of Interface
javax.xml.transform.Source
-
Packages that use Source 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.helpers JAXB Provider Use Only: Provides partial default implementations for some of thejavax.xml.bind
interfaces.javax.xml.bind.util Useful client utility classes.javax.xml.catalog Provides the classes for implementing XML Catalogs OASIS Standard V1.1, 7 October 2005.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.spi This package defines SPIs for JAX-WS.javax.xml.ws.wsaddressing This package defines APIs related to WS-Addressing. -
-
Uses of Source in java.sql
Methods in java.sql with type parameters of type Source Modifier and Type Method Description <T extends Source>
TSQLXML. getSource(Class<T> sourceClass)
Returns a Source for reading the XML value designated by this SQLXML instance. -
Uses of Source in javax.xml.bind
Methods in javax.xml.bind with parameters of type Source Modifier and Type Method Description static <T> T
JAXB. unmarshal(Source xml, Class<T> type)
Reads in a Java object tree from the given XML input.Object
Unmarshaller. unmarshal(Source source)
Unmarshal XML data from the specified XML Source and return the resulting content tree.<T> JAXBElement<T>
Unmarshaller. unmarshal(Source source, Class<T> declaredType)
Unmarshal XML data from the specified XML Source bydeclaredType
and return the resulting content tree. -
Uses of Source in javax.xml.bind.annotation
Methods in javax.xml.bind.annotation that return Source Modifier and Type Method Description Source
DomHandler. marshal(ElementT n, ValidationEventHandler errorHandler)
This method is called when a JAXB provider needs to marshal an element to XML.Source
W3CDomHandler. marshal(Element element, ValidationEventHandler errorHandler)
-
Uses of Source in javax.xml.bind.helpers
Methods in javax.xml.bind.helpers with parameters of type Source Modifier and Type Method Description Object
AbstractUnmarshallerImpl. unmarshal(Source source)
<T> JAXBElement<T>
AbstractUnmarshallerImpl. unmarshal(Source source, Class<T> expectedType)
-
Uses of Source in javax.xml.bind.util
Classes in javax.xml.bind.util that implement Source Modifier and Type Class Description class
JAXBSource
JAXPSource
implementation that marshals a JAXB-generated object. -
Uses of Source in javax.xml.catalog
Methods in javax.xml.catalog that return Source Modifier and Type Method Description Source
CatalogResolver. resolve(String href, String base)
Implements URIResolver. -
Uses of Source in javax.xml.soap
Methods in javax.xml.soap that return Source Modifier and Type Method Description abstract Source
SOAPPart. getContent()
Returns the content of the SOAPEnvelope as a JAXPSource
object.Methods in javax.xml.soap with parameters of type Source Modifier and Type Method Description abstract void
SOAPPart. setContent(Source source)
Sets the content of theSOAPEnvelope
object with the data from the givenSource
object. -
Uses of Source in javax.xml.stream
Methods in javax.xml.stream with parameters of type Source Modifier and Type Method Description abstract XMLEventReader
XMLInputFactory. createXMLEventReader(Source source)
Create a new XMLEventReader from a JAXP source.abstract XMLStreamReader
XMLInputFactory. createXMLStreamReader(Source source)
Create a new XMLStreamReader from a JAXP source. -
Uses of Source in javax.xml.transform
Methods in javax.xml.transform that return Source Modifier and Type Method Description abstract Source
TransformerFactory. getAssociatedStylesheet(Source source, String media, String title, String charset)
Get the stylesheet specification(s) associated with the XMLSource
document via the xml-stylesheet processing instruction that match the given criteria.Source
URIResolver. resolve(String href, String base)
Called by the processor when it encounters an xsl:include, xsl:import, or document() function.Methods in javax.xml.transform with parameters of type Source Modifier and Type Method Description abstract Source
TransformerFactory. getAssociatedStylesheet(Source source, String media, String title, String charset)
Get the stylesheet specification(s) associated with the XMLSource
document via the xml-stylesheet processing instruction that match the given criteria.abstract Templates
TransformerFactory. newTemplates(Source source)
Process the Source into a Templates object, which is a a compiled representation of the source.abstract Transformer
TransformerFactory. newTransformer(Source source)
Process theSource
into aTransformer
Object
.abstract void
Transformer. transform(Source xmlSource, Result outputTarget)
Transform the XMLSource
to aResult
. -
Uses of Source in javax.xml.transform.dom
Classes in javax.xml.transform.dom that implement Source Modifier and Type Class Description class
DOMSource
Acts as a holder for a transformation Source tree in the form of a Document Object Model (DOM) tree. -
Uses of Source in javax.xml.transform.sax
Classes in javax.xml.transform.sax that implement Source Modifier and Type Class Description class
SAXSource
Acts as an holder for SAX-style Source.Methods in javax.xml.transform.sax with parameters of type Source Modifier and Type Method Description abstract TransformerHandler
SAXTransformerFactory. newTransformerHandler(Source src)
Get a TransformerHandler object that can process SAX ContentHandler events into a Result, based on the transformation instructions specified by the argument.abstract XMLFilter
SAXTransformerFactory. newXMLFilter(Source src)
Create an XMLFilter that uses the given Source as the transformation instructions.static InputSource
SAXSource. sourceToInputSource(Source source)
Attempt to obtain a SAX InputSource object from a Source object. -
Uses of Source in javax.xml.transform.stax
Classes in javax.xml.transform.stax that implement Source Modifier and Type Class Description class
StAXSource
Acts as a holder for an XMLSource
in the form of a StAX reader,i.e. -
Uses of Source in javax.xml.transform.stream
Classes in javax.xml.transform.stream that implement Source Modifier and Type Class Description class
StreamSource
Acts as an holder for a transformation Source in the form of a stream of XML markup. -
Uses of Source in javax.xml.validation
Methods in javax.xml.validation with parameters of type Source Modifier and Type Method Description Schema
SchemaFactory. newSchema(Source schema)
Parses the specified source as a schema and returns it as a schema.abstract Schema
SchemaFactory. newSchema(Source[] schemas)
Parses the specified source(s) as a schema and returns it as a schema.void
Validator. validate(Source source)
Validates the specified input.abstract void
Validator. validate(Source source, Result result)
Validates the specified input and send the augmented validation result to the specified output. -
Uses of Source in javax.xml.ws
Methods in javax.xml.ws that return Source Modifier and Type Method Description Source
LogicalMessage. getPayload()
Gets the message payload as an XML source, may be called multiple times on the same LogicalMessage instance, always returns a newSource
that may be used to retrieve the entire message payload.Methods in javax.xml.ws that return types with arguments of type Source Modifier and Type Method Description abstract List<Source>
Endpoint. getMetadata()
Returns a list of metadata documents for the service.Methods in javax.xml.ws with parameters of type Source Modifier and Type Method Description static EndpointReference
EndpointReference. readFrom(Source eprInfoset)
Factory method to read an EndpointReference from the infoset contained ineprInfoset
.void
LogicalMessage. setPayload(Source payload)
Sets the message payloadMethod parameters in javax.xml.ws with type arguments of type Source Modifier and Type Method Description abstract void
Endpoint. setMetadata(List<Source> metadata)
Sets the metadata for this endpoint. -
Uses of Source in javax.xml.ws.spi
Methods in javax.xml.ws.spi with parameters of type Source Modifier and Type Method Description abstract EndpointReference
Provider. readEndpointReference(Source eprInfoset)
read an EndpointReference from the infoset contained ineprInfoset
. -
Uses of Source in javax.xml.ws.wsaddressing
Constructors in javax.xml.ws.wsaddressing with parameters of type Source Constructor Description W3CEndpointReference(Source source)
Creates an EPR from infoset representation
-