Java org.dom4j Attribute fields, constructors, methods, implement or subclass

Example usage for Java org.dom4j Attribute fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.dom4j Attribute.

The text is from its open source code.

Implementation

org.dom4j.Attribute has the following implementations.
Click this link to see all its implementation.

Method

ObjectgetData()
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() .
NamespacegetNamespace()
Returns the Namespace of this element if one exists otherwise null is returned returned.
StringgetNamespacePrefix()
Returns the namespace prefix of this element if one exists otherwise an empty String is returned.
StringgetNamespaceURI()
Returns the URI mapped to the namespace of this element if one exists otherwise an empty String is returned.
QNamegetQName()
Returns the QName of this attribute which represents the local name, the qualified name and the Namespace.
StringgetQualifiedName()
Returns the fully qualified name of this element.
StringgetValue()
Returns the value of the attribute.
voidsetData(Object data)
Sets the data value of this attribute if this element supports data binding or calls Node#setText(String) if it doesn't.
voidsetValue(String value)
Sets the value of this attribute or this method will throw an UnsupportedOperationException if it is read-only.