Uses of Class
jakarta.xml.bind.JAXBElement
-
Packages that use JAXBElement Package Description jakarta.xml.bind Provides a runtime binding framework for client applications including unmarshalling, marshalling, and validation capabilities.jakarta.xml.bind.helpers Jakarta XML Binding Provider Use Only: Provides partial default implementations for some of thejakarta.xml.bind
interfaces. -
-
Uses of JAXBElement in jakarta.xml.bind
Methods in jakarta.xml.bind that return JAXBElement Modifier and Type Method Description abstract <T> JAXBElement<T>
Binder. unmarshal(XmlNode xmlNode, Class<T> declaredType)
Unmarshal XML root element by provideddeclaredType
to a Jakarta XML Binding object tree.<T> JAXBElement<T>
Unmarshaller. unmarshal(XMLEventReader reader, Class<T> declaredType)
Unmarshal root element to Jakarta XML Binding mappeddeclaredType
and return the resulting content tree.<T> JAXBElement<T>
Unmarshaller. unmarshal(XMLStreamReader reader, Class<T> declaredType)
Unmarshal root element to Jakarta XML Binding mappeddeclaredType
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.<T> JAXBElement<T>
Unmarshaller. unmarshal(Node node, Class<T> declaredType)
Unmarshal XML data by Jakarta XML Binding mappeddeclaredType
and return the resulting content tree. -
Uses of JAXBElement in jakarta.xml.bind.helpers
Methods in jakarta.xml.bind.helpers that return JAXBElement Modifier and Type Method Description <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)
-