|
|||||||||
| Home >> All >> org >> [ jdom overview ] | PREV NEXT | ||||||||
Uses of Class
org.jdom.Namespace
| Uses of Namespace in org.jdom |
| Fields in org.jdom declared as Namespace | |
static Namespace |
Namespace.NO_NAMESPACE
Define a Namespace for when not in a namespace |
static Namespace |
Namespace.XML_NAMESPACE
Define a Namespace for the standard xml prefix. |
protected Namespace |
Element.namespace
The namespace of the element |
protected Namespace |
Attribute.namespace
The Namespace of the Attribute |
| Methods in org.jdom that return Namespace | |
static Namespace |
Namespace.getNamespace(java.lang.String prefix,
java.lang.String uri)
This will retrieve (if in existence) or create (if not) a Namespace for the supplied prefix and URI. |
static Namespace |
Namespace.getNamespace(java.lang.String uri)
This will retrieve (if in existence) or create (if not) a Namespace for the supplied URI, and make it usable
as a default namespace, as no prefix is supplied. |
Namespace |
Element.getNamespace()
Returns the element's Namespace. |
Namespace |
Element.getNamespace(java.lang.String prefix)
Returns the Namespace corresponding to the given prefix in scope for this element. |
Namespace |
Attribute.getNamespace()
This will return this Attribute's
Namespace. |
| Methods in org.jdom with parameters of type Namespace | |
Element |
UncheckedJDOMFactory.element(java.lang.String name,
Namespace namespace)
|
Attribute |
UncheckedJDOMFactory.attribute(java.lang.String name,
java.lang.String value,
Namespace namespace)
|
Attribute |
UncheckedJDOMFactory.attribute(java.lang.String name,
java.lang.String value,
int type,
Namespace namespace)
|
void |
UncheckedJDOMFactory.addNamespaceDeclaration(Element parent,
Namespace additional)
|
Attribute |
JDOMFactory.attribute(java.lang.String name,
java.lang.String value,
Namespace namespace)
This will create a new Attribute with the
specified (local) name and value, and in the provided
Namespace. |
Attribute |
JDOMFactory.attribute(java.lang.String name,
java.lang.String value,
int type,
Namespace namespace)
This will create a new Attribute with the
specified (local) name, value, and type, and in the provided
Namespace. |
Element |
JDOMFactory.element(java.lang.String name,
Namespace namespace)
This will create a new Element
with the supplied (local) name, and define
the Namespace to be used. |
void |
JDOMFactory.addNamespaceDeclaration(Element element,
Namespace additional)
|
Attribute |
DefaultJDOMFactory.attribute(java.lang.String name,
java.lang.String value,
Namespace namespace)
|
Attribute |
DefaultJDOMFactory.attribute(java.lang.String name,
java.lang.String value,
int type,
Namespace namespace)
|
Element |
DefaultJDOMFactory.element(java.lang.String name,
Namespace namespace)
|
void |
DefaultJDOMFactory.addNamespaceDeclaration(Element parent,
Namespace additional)
|
static java.lang.String |
Verifier.checkNamespaceCollision(Namespace namespace,
Namespace other)
Check if two namespaces collide. |
static java.lang.String |
Verifier.checkNamespaceCollision(Namespace namespace,
Element element)
Check if a Namespace collides with a
Element's namespace. |
static java.lang.String |
Verifier.checkNamespaceCollision(Namespace namespace,
Attribute attribute)
Check if a Namespace collides with a
Attribute's namespace. |
static java.lang.String |
Verifier.checkNamespaceCollision(Namespace namespace,
java.util.List list)
Check if a Namespace collides with any namespace
from a list of objects. |
Element |
Element.setNamespace(Namespace namespace)
Sets the element's Namespace. |
void |
Element.addNamespaceDeclaration(Namespace additional)
Adds a namespace declarations to this element. |
void |
Element.removeNamespaceDeclaration(Namespace additionalNamespace)
Removes an additional namespace declarations from this element. |
java.lang.String |
Element.getChildText(java.lang.String name,
Namespace ns)
Returns the textual content of the named child element, or null if there's no such child. |
java.lang.String |
Element.getChildTextTrim(java.lang.String name,
Namespace ns)
Returns the trimmed textual content of the named child element, or null if there's no such child. |
java.lang.String |
Element.getChildTextNormalize(java.lang.String name,
Namespace ns)
Returns the normalized textual content of the named child element, or null if there's no such child. |
Attribute |
Element.getAttribute(java.lang.String name,
Namespace ns)
This returns the attribute for this element with the given name and within the given Namespace, or null if no such attribute exists. |
java.lang.String |
Element.getAttributeValue(java.lang.String name,
Namespace ns)
This returns the attribute value for the attribute with the given name and within the given Namespace, null if there is no such attribute, and the empty string if the attribute value is empty. |
java.lang.String |
Element.getAttributeValue(java.lang.String name,
Namespace ns,
java.lang.String def)
This returns the attribute value for the attribute with the given name and within the given Namespace, or the passed-in default if there is no such attribute. |
Element |
Element.setAttribute(java.lang.String name,
java.lang.String value,
Namespace ns)
This sets an attribute value for this element. |
boolean |
Element.removeAttribute(java.lang.String name,
Namespace ns)
This removes the attribute with the given name and within the given Namespace. |
java.util.List |
Element.getChildren(java.lang.String name,
Namespace ns)
This returns a List of all the child elements
nested directly (one level deep) within this element with the given
local name and belonging to the given Namespace, returned as
Element objects. |
Element |
Element.getChild(java.lang.String name,
Namespace ns)
This returns the first child element within this element with the given local name and belonging to the given namespace. |
boolean |
Element.removeChild(java.lang.String name,
Namespace ns)
This removes the first child element (one level deep) with the given local name and belonging to the given namespace. |
boolean |
Element.removeChildren(java.lang.String name,
Namespace ns)
This removes all child elements (one level deep) with the given local name and belonging to the given namespace. |
(package private) java.lang.Object |
AttributeList.get(java.lang.String name,
Namespace namespace)
Return the Attribute with the
given name and Namespace. |
(package private) int |
AttributeList.indexOf(java.lang.String name,
Namespace namespace)
Return index of the Attribute with the
given name and uri. |
(package private) boolean |
AttributeList.remove(java.lang.String name,
Namespace namespace)
Remove the Attribute with the
given name and Namespace. |
Attribute |
Attribute.setNamespace(Namespace namespace)
This sets this Attribute's Namespace. |
| Constructors in org.jdom with parameters of type Namespace | |
IllegalAddException(Element base,
Namespace added,
java.lang.String reason)
This will create an Exception indicating
that the addition of the Namespace
to the Element is illegal. |
|
Element(java.lang.String name,
Namespace namespace)
Creates a new element with the supplied (local) name and namespace. |
|
Attribute(java.lang.String name,
java.lang.String value,
Namespace namespace)
This will create a new Attribute with the
specified (local) name and value, and in the provided
Namespace. |
|
Attribute(java.lang.String name,
java.lang.String value,
int type,
Namespace namespace)
This will create a new Attribute with the
specified (local) name, value, and type, and in the provided
Namespace. |
|
|
|||||||||
| Home >> All >> org >> [ jdom overview ] | PREV NEXT | ||||||||