Uses of Interface
javax.xml.transform.Source
-
Packages that use Source 软件包 描述 java.sql 提供使用Java编程语言访问和处理存储在数据源(通常是关系数据库)中的数据的API。javax.xml.bind 为客户端应用程序提供运行时绑定框架,包括解组,编组和验证功能。javax.xml.bind.annotation 定义用于将Java程序元素定制到XML模式映射的注释。javax.xml.bind.helpers 仅限JAXB提供程序使用:为某些javax.xml.bind
接口提供部分默认实现。javax.xml.bind.util 有用的客户端工具类。javax.xml.catalog javax.xml.soap 提供用于创建和构建SOAP消息的API。javax.xml.stream 定义Streaming API for XML(StAX)的接口和类。javax.xml.transform 定义用于处理转换指令的通用API,以及执行从源到结果的转换。javax.xml.transform.dom 提供DOM特定的转换类。javax.xml.transform.sax 提供SAX特定的转换类。javax.xml.transform.stax 提供StAX特定的转换类。javax.xml.transform.stream 提供流和URI特定的转换类。javax.xml.validation 提供用于验证XML文档的API。javax.xml.ws 此软件包包含核心JAX-WS API。javax.xml.ws.spi 此套件为JAX-WS定义了SPI。javax.xml.ws.wsaddressing 此包定义与WS-Addressing相关的API。 -
-
Uses of Source in java.sql
Methods in java.sql with type parameters of type Source Modifier and Type 方法 描述 <T extends Source>
TSQLXML. getSource(Class<T> sourceClass)
返回一个用于读取此SQLXML实例指定的XML值的源。 -
Uses of Source in javax.xml.bind
Methods in javax.xml.bind with parameters of type Source Modifier and Type 方法 描述 static <T> T
JAXB. unmarshal(Source xml, Class<T> type)
从给定的XML输入中读取Java对象树。Object
Unmarshaller. unmarshal(Source source)
从指定的XML Source中解组XML数据并返回生成的内容树。<T> JAXBElement<T>
Unmarshaller. unmarshal(Source source, Class<T> declaredType)
从指定的XML源declaredType
XML数据declaredType
并返回生成的内容树。 -
Uses of Source in javax.xml.bind.annotation
Methods in javax.xml.bind.annotation that return Source Modifier and Type 方法 描述 Source
DomHandler. marshal(ElementT n, ValidationEventHandler errorHandler)
当JAXB提供程序需要将元素编组为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 方法 描述 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 描述 class
JAXBSource
-
Uses of Source in javax.xml.catalog
Methods in javax.xml.catalog that return Source Modifier and Type 方法 描述 Source
CatalogResolver. resolve(String href, String base)
实施URIRsolver。 -
Uses of Source in javax.xml.soap
Methods in javax.xml.soap that return Source Modifier and Type 方法 描述 abstract Source
SOAPPart. getContent()
以JAXPSource
对象的形式返回SOAPEnvelope的内容。Methods in javax.xml.soap with parameters of type Source Modifier and Type 方法 描述 abstract void
SOAPPart. setContent(Source source)
使用给定的Source
对象的数据设置SOAPEnvelope
对象的内容。 -
Uses of Source in javax.xml.stream
Methods in javax.xml.stream with parameters of type Source Modifier and Type 方法 描述 abstract XMLEventReader
XMLInputFactory. createXMLEventReader(Source source)
从JAXP源创建一个新的XMLEventReader。abstract XMLStreamReader
XMLInputFactory. createXMLStreamReader(Source source)
从JAXP源创建一个新的XMLStreamReader。 -
Uses of Source in javax.xml.transform
Methods in javax.xml.transform that return Source Modifier and Type 方法 描述 abstract Source
TransformerFactory. getAssociatedStylesheet(Source source, String media, String title, String charset)
通过符合给定条件的 xml-stylesheet processing instruction获取与XMLSource
文档关联的样式表规范。Source
URIResolver. resolve(String href, String base)
处理器遇到xsl:include,xsl:import或document()函数时调用。Methods in javax.xml.transform with parameters of type Source Modifier and Type 方法 描述 abstract Source
TransformerFactory. getAssociatedStylesheet(Source source, String media, String title, String charset)
通过匹配给定条件的 xml-stylesheet processing instruction获取与XMLSource
文档关联的样式表规范。abstract Templates
TransformerFactory. newTemplates(Source source)
将源处理为一个Templates对象,它是源的编译表示。abstract Transformer
TransformerFactory. newTransformer(Source source)
处理Source
成Transformer
Object
。abstract void
Transformer. transform(Source xmlSource, Result outputTarget)
将XMLSource
转换为Result
。 -
Uses of Source in javax.xml.transform.dom
Classes in javax.xml.transform.dom that implement Source Modifier and Type Class 描述 class
DOMSource
作为文档对象模型(DOM)树形式的变换源树的持有者。 -
Uses of Source in javax.xml.transform.sax
Classes in javax.xml.transform.sax that implement Source Modifier and Type Class 描述 class
SAXSource
作为SAX风格来源的持有人。Methods in javax.xml.transform.sax with parameters of type Source Modifier and Type 方法 描述 abstract TransformerHandler
SAXTransformerFactory. newTransformerHandler(Source src)
获取一个TransformerHandler对象,可以根据参数指定的转换指令,将SAX ContentHandler事件处理成Result。abstract XMLFilter
SAXTransformerFactory. newXMLFilter(Source src)
创建一个使用给定的源作为转换指令的XMLFilter。static InputSource
SAXSource. sourceToInputSource(Source source)
尝试从Source对象获取SAX InputSource对象。 -
Uses of Source in javax.xml.transform.stax
Classes in javax.xml.transform.stax that implement Source Modifier and Type Class 描述 class
StAXSource
作为StAX读者形式的XMLSource
的持有者,即 -
Uses of Source in javax.xml.transform.stream
Classes in javax.xml.transform.stream that implement Source Modifier and Type Class 描述 class
StreamSource
作为转换的持有人以XML标记流的形式来源。 -
Uses of Source in javax.xml.validation
Methods in javax.xml.validation with parameters of type Source Modifier and Type 方法 描述 Schema
SchemaFactory. newSchema(Source schema)
将指定的源解析为模式,并将其作为模式返回。abstract Schema
SchemaFactory. newSchema(Source[] schemas)
将指定的源解析为模式并将其作为模式返回。void
Validator. validate(Source source)
验证指定的输入。abstract void
Validator. validate(Source source, Result result)
验证指定的输入并将增强的验证结果发送到指定的输出。 -
Uses of Source in javax.xml.ws
Methods in javax.xml.ws that return Source Modifier and Type 方法 描述 Source
LogicalMessage. getPayload()
将消息有效负载作为XML源,可以在同一个LogicalMessage实例上多次调用,总是返回一个可用于检索整个消息有效负载的新的Source
。Methods in javax.xml.ws that return types with arguments of type Source Modifier and Type 方法 描述 abstract List<Source>
Endpoint. getMetadata()
返回服务的元数据文档列表。Methods in javax.xml.ws with parameters of type Source Modifier and Type 方法 描述 static EndpointReference
EndpointReference. readFrom(Source eprInfoset)
从eprInfoset
包含的信息集读取EndpointReference的工厂方法。void
LogicalMessage. setPayload(Source payload)
设置消息有效载荷Method parameters in javax.xml.ws with type arguments of type Source Modifier and Type 方法 描述 abstract void
Endpoint. setMetadata(List<Source> metadata)
设置此端点的元数据。 -
Uses of Source in javax.xml.ws.spi
Methods in javax.xml.ws.spi with parameters of type Source Modifier and Type 方法 描述 abstract EndpointReference
Provider. readEndpointReference(Source eprInfoset)
从eprInfoset
包含的信息集读取EndpointReference。 -
Uses of Source in javax.xml.ws.wsaddressing
Constructors in javax.xml.ws.wsaddressing with parameters of type Source Constructor 描述 W3CEndpointReference(Source source)
从信息集表示形成EPR
-