Example usage for Java org.dom4j Attribute fields, constructors, methods, implement or subclass
The text is from its open source code.
Object | getData() Accesses the data of this attribute which may implement data typing bindings such as XML Schema or Java Bean bindings or will return the same value as Node#getText() . |
Namespace | getNamespace() Returns the Namespace of this element if one exists otherwise null is returned returned. |
String | getNamespacePrefix() Returns the namespace prefix of this element if one exists otherwise an empty String is returned. |
String | getNamespaceURI() Returns the URI mapped to the namespace of this element if one exists otherwise an empty String is returned. |
QName | getQName() Returns the QName of this attribute which represents the local name, the qualified name and the Namespace . |
String | getQualifiedName() Returns the fully qualified name of this element. |
String | getValue() Returns the value of the attribute. |
void | setData(Object data) Sets the data value of this attribute if this element supports data binding or calls Node#setText(String) if it doesn't. |
void | setValue(String value) Sets the value of this attribute or this method will throw an UnsupportedOperationException if it is read-only. |