Example usage for Java javax.xml.bind JAXBElement fields, constructors, methods, implement or subclass
The text is from its open source code.
JAXBElement(QName name, Class Construct an xml element instance. | |
JAXBElement(QName name, Class Construct an xml element instance. |
Class> | getClass() Returns the runtime class of this Object . |
Class | getDeclaredType() Returns the Java binding of the xml element declaration's type attribute. |
QName | getName() Returns the xml element tag name. |
Class | getScope() Returns scope of xml element declaration. |
T | getValue() Return the content model and attribute values for this element. See #isNil() for a description of a property constraint when this value is null |
boolean | isNil() Returns true iff this element instance content model is nil. This property always returns true when #getValue() is null. |
void | setNil(boolean value) Set whether this element has nil content. |
void | setValue(T t) Set the content model and attributes of this xml element. When this property is set to null , isNil() must by true . |
String | toString() Returns a string representation of the object. |