- java.lang.Object
-
- javax.xml.bind.JAXBIntrospector
-
public abstract class JAXBIntrospector extends Object
Provide access to JAXB xml binding data for a JAXB object.Intially, the intent of this class is to just conceptualize how a JAXB application developer can access xml binding information, independent if binding model is java to schema or schema to java. Since accessing the XML element name related to a JAXB element is a highly requested feature, demonstrate access to this binding information. The factory method to get a
JAXBIntrospector
instance isJAXBContext.createJAXBIntrospector()
.- Since:
- JAXB2.0
- See Also:
JAXBContext.createJAXBIntrospector()
-
-
Constructor Summary
Constructors Constructor and Description JAXBIntrospector()
-
Method Summary
Methods Modifier and Type Method and Description abstract QName
getElementName(Object jaxbElement)
Get xml element qname forjaxbElement
.static Object
getValue(Object jaxbElement)
Get the element value of a JAXB element.abstract boolean
isElement(Object object)
Return true iffobject
represents a JAXB element.
-
-
-
Method Detail
-
isElement
public abstract boolean isElement(Object object)
Return true iff
object
represents a JAXB element.Parameter
object
is a JAXB element for following cases:- It is an instance of
javax.xml.bind.JAXBElement
. - The class of
object
is annotated with@XmlRootElement
.
- See Also:
getElementName(Object)
- It is an instance of
-
getElementName
public abstract QName getElementName(Object jaxbElement)
Get xml element qname for
jaxbElement
.- Parameters:
jaxbElement
- is an object thatisElement(Object)
returned true.- Returns:
- xml element qname associated with jaxbElement;
null if
jaxbElement
is not a JAXB Element.
-
getValue
public static Object getValue(Object jaxbElement)
Get the element value of a JAXB element.
Convenience method to abstract whether working with either a javax.xml.bind.JAXBElement instance or an instance of @XmlRootElement annotated Java class.
- Parameters:
jaxbElement
- object that #isElement(Object) returns true.- Returns:
- The element value of the
jaxbElement
.
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/xml/bind/jaxbintrospector.html/
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.