Uses of Class
javax.xml.bind.JAXBElement
-
Packages that use JAXBElement 软件包 描述 javax.xml.bind 为客户端应用程序提供运行时绑定框架,包括解组,编组和验证功能。javax.xml.bind.helpers 仅限JAXB提供程序使用:为某些javax.xml.bind
接口提供部分默认实现。 -
-
Uses of JAXBElement in javax.xml.bind
Methods in javax.xml.bind that return JAXBElement Modifier and Type 方法 描述 abstract <T> JAXBElement<T>
Binder. unmarshal(XmlNode xmlNode, Class<T> declaredType)
通过向JAXB对象树提供declaredType
解组XML根元素。<T> JAXBElement<T>
Unmarshaller. unmarshal(XMLEventReader reader, Class<T> declaredType)
将根元素解组到JAXB映射declaredType
并返回生成的内容树。<T> JAXBElement<T>
Unmarshaller. unmarshal(XMLStreamReader reader, Class<T> declaredType)
将根元素解组到JAXB映射declaredType
并返回生成的内容树。<T> JAXBElement<T>
Unmarshaller. unmarshal(Source source, Class<T> declaredType)
将declaredType
从指定的XML源解组XML数据,并返回生成的内容树。<T> JAXBElement<T>
Unmarshaller. unmarshal(Node node, Class<T> declaredType)
Unmarshal XML data by JAXB mappeddeclaredType
and return the resulting content tree. -
Uses of JAXBElement in javax.xml.bind.helpers
Methods in javax.xml.bind.helpers that return JAXBElement Modifier and Type 方法 描述 <T> JAXBElement<T>
AbstractUnmarshallerImpl. unmarshal(XMLEventReader reader, Class<T> expectedType)
<T> JAXBElement<T>
AbstractUnmarshallerImpl. unmarshal(XMLStreamReader reader, Class<T> expectedType)
<T> JAXBElement<T>
AbstractUnmarshallerImpl. unmarshal(Source source, Class<T> expectedType)
<T> JAXBElement<T>
AbstractUnmarshallerImpl. unmarshal(Node node, Class<T> expectedType)
-