ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getAttribute(java.lang.String attr)
Deprecated.
Retrieves an attribute value by name.
|
Attr |
getAttributeNode(java.lang.String attr)
Deprecated.
Retrieves an attribute node by name.
|
Attr |
getAttributeNodeNS(java.lang.String namespaceURI,
java.lang.String localName)
Deprecated.
Retrieves an
Attr node by local name and namespace URI. |
java.lang.String |
getAttributeNS(java.lang.String namespaceURI,
java.lang.String localName)
Deprecated.
Retrieves an attribute value by local name and namespace URI.
|
XDBNodeList |
getChildrenByTagName(java.lang.String tagName)
Deprecated.
get the children node list based on the tag name
|
XDBNodeList |
getChildrenByTagNameNS(java.lang.String tagName,
java.lang.String ns)
Deprecated.
get the children node list based on the tag name
|
NodeList |
getElementsByTagName(java.lang.String tag)
Deprecated.
Returns a
NodeList of all descendant Elements
with a given tag name, in the order in which they are encountered in
a preorder traversal of this Element tree. |
NodeList |
getElementsByTagNameNS(java.lang.String nsURI,
java.lang.String tag)
Deprecated.
Returns a
NodeList of all the descendant
Elements with a given local name and namespace URI in
the order in which they are encountered in a preorder traversal of
this Element tree. |
TypeInfo |
getSchemaTypeInfo()
Deprecated.
|
java.lang.String |
getTagName()
Deprecated.
The name of the element.
|
boolean |
hasAttribute(java.lang.String name)
Deprecated.
Returns
true when an attribute with a given name is
specified on this element or has a default value, false
otherwise. |
boolean |
hasAttributeNS(java.lang.String nsURI,
java.lang.String name)
Deprecated.
Returns
true when an attribute with a given local name and
namespace URI is specified on this element or has a default value,
false otherwise. |
void |
removeAttribute(java.lang.String attr)
Deprecated.
Removes an attribute by name.
|
Attr |
removeAttributeNode(Attr oldattr)
Deprecated.
Removes the specified attribute node.
|
void |
removeAttributeNS(java.lang.String namespaceURI,
java.lang.String localName)
Deprecated.
Removes an attribute by local name and namespace URI.
|
java.lang.String |
resolveNSPrefix(java.lang.String prefix)
Deprecated.
|
void |
setAttribute(java.lang.String name,
java.lang.String attr)
Deprecated.
Adds a new attribute.
|
Attr |
setAttributeNode(Attr newattr)
Deprecated.
Adds a new attribute node.
|
Attr |
setAttributeNodeNS(Attr newAttr)
Deprecated.
Adds a new attribute.
|
void |
setAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String value)
Deprecated.
Adds a new attribute.
|
void |
setIdAttribute(java.lang.String name,
boolean isId)
Deprecated.
|
void |
setIdAttributeNode(Attr idAttr,
boolean isId)
Deprecated.
|
void |
setIdAttributeNS(java.lang.String namespaceURI,
java.lang.String localName,
boolean isId)
Deprecated.
|
appendChild, cloneNode, close, compareDocumentPosition, equals, finalize, getAttributes, getBaseURI, getChildNodes, getExpandedName, getFeature, getFirstChild, getInputStream, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getPrimitiveType, getQualifiedName, getSchemaNode, getTextContent, getUserData, hasAttributes, hasChildNodes, hashCode, insertBefore, isDefaultNamespace, isEqualNode, isNilled, isSameNode, isSchemaBased, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setNodeXob, setOwner, setPrefix, setTextContent, setUserData, setXobCstate, toCState, toString, write, writeToOutputStreamappendChild, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasAttributes, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild, setNodeValue, setPrefixpublic java.lang.String getTagName()
Element<elementExample id="demo"> ... </elementExample> ,
tagName has
the value "elementExample". Note that this is
case-preserving in XML, as are all of the operations of the DOM. The
HTML DOM returns the tagName of an HTML element in the
canonical uppercase form, regardless of the case in the source HTML
document.getTagName in interface Elementpublic java.lang.String getAttribute(java.lang.String attr)
ElementgetAttribute in interface Elementattr - The name of the attribute to retrieve.Attr value as a string, or the empty string
if that attribute does not have a specified or default value.public void setAttribute(java.lang.String name,
java.lang.String attr)
ElementAttr node plus any
Text and EntityReference nodes, build the
appropriate subtree, and use setAttributeNode to assign
it as the value of an attribute.
setAttributeNS method.setAttribute in interface Elementname - The name of the attribute to create or alter.attr - Value to set in string form.public void removeAttribute(java.lang.String attr)
ElementremoveAttributeNS method.removeAttribute in interface Elementattr - The name of the attribute to remove.public Attr getAttributeNode(java.lang.String attr)
ElementgetAttributeNodeNS method.getAttributeNode in interface Elementattr - The name (nodeName) of the attribute to
retrieve.Attr node with the specified name (
nodeName) or null if there is no such
attribute.public Attr setAttributeNode(Attr newattr) throws DOMException
ElementnodeName) is already present in the element, it is
replaced by the new one.
setAttributeNodeNS method.setAttributeNode in interface Elementnewattr - The Attr node to add to the attribute list.newAttr attribute replaces an existing
attribute, the replaced Attr node is returned,
otherwise null is returned.DOMException - WRONG_DOCUMENT_ERR: Raised if newAttr was created from a
different document than the one that created the element.
newAttr is already an
attribute of another Element object. The DOM user must
explicitly clone Attr nodes to re-use them in other
elements.public Attr removeAttributeNode(Attr oldattr)
ElementAttr
has a default value it is immediately replaced. The replacing
attribute has the same namespace URI and local name, as well as the
original prefix, when applicable.removeAttributeNode in interface Elementoldattr - The Attr node to remove from the attribute
list.Attr node that was removed.public NodeList getElementsByTagName(java.lang.String tag)
ElementNodeList of all descendant Elements
with a given tag name, in the order in which they are encountered in
a preorder traversal of this Element tree.getElementsByTagName in interface Elementtag - The name of the tag to match on. The special value "*"
matches all tags.Element nodes.public java.lang.String getAttributeNS(java.lang.String namespaceURI,
java.lang.String localName)
ElementgetAttributeNS in interface ElementnamespaceURI - The namespace URI of the attribute to retrieve.localName - The local name of the attribute to retrieve.Attr value as a string, or the empty string
if that attribute does not have a specified or default value.public void setAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String value)
throws DOMException
ElementqualifiedName, and
its value is changed to be the value parameter. This
value is a simple string; it is not parsed as it is being set. So any
markup (such as syntax to be recognized as an entity reference) is
treated as literal text, and needs to be appropriately escaped by the
implementation when it is written out. In order to assign an
attribute value that contains entity references, the user must create
an Attr node plus any Text and
EntityReference nodes, build the appropriate subtree,
and use setAttributeNodeNS or
setAttributeNode to assign it as the value of an
attribute.
setAttributeNS in interface ElementnamespaceURI - The namespace URI of the attribute to create or
alter.qualifiedName - The qualified name of the attribute to create or
alter.value - The value to set in string form.DOMException - INVALID_CHARACTER_ERR: Raised if the specified qualified name
contains an illegal character.
qualifiedName is
malformed, if the qualifiedName has a prefix and the
namespaceURI is null, if the
qualifiedName has a prefix that is "xml" and the
namespaceURI is different from "
http://www.w3.org/XML/1998/namespace", or if the
qualifiedName is "xmlns" and the
namespaceURI is different from "
http://www.w3.org/2000/xmlns/".public void removeAttributeNS(java.lang.String namespaceURI,
java.lang.String localName)
throws DOMException
ElementremoveAttributeNS in interface ElementnamespaceURI - The namespace URI of the attribute to remove.localName - The local name of the attribute to remove.DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.public Attr getAttributeNodeNS(java.lang.String namespaceURI, java.lang.String localName)
ElementAttr node by local name and namespace URI.
HTML-only DOM implementations do not need to implement this method.getAttributeNodeNS in interface ElementnamespaceURI - The namespace URI of the attribute to retrieve.localName - The local name of the attribute to retrieve.Attr node with the specified attribute local
name and namespace URI or null if there is no such
attribute.public Attr setAttributeNodeNS(Attr newAttr) throws DOMException
ElementsetAttributeNodeNS in interface ElementnewAttr - The Attr node to add to the attribute list.newAttr attribute replaces an existing
attribute with the same local name and namespace URI, the replaced
Attr node is returned, otherwise null is
returned.DOMException - WRONG_DOCUMENT_ERR: Raised if newAttr was created from a
different document than the one that created the element.
newAttr is already an
attribute of another Element object. The DOM user must
explicitly clone Attr nodes to re-use them in other
elements.public NodeList getElementsByTagNameNS(java.lang.String nsURI, java.lang.String tag)
ElementNodeList of all the descendant
Elements with a given local name and namespace URI in
the order in which they are encountered in a preorder traversal of
this Element tree.
getElementsByTagNameNS in interface ElementnsURI - The namespace URI of the elements to match on. The
special value "*" matches all namespaces.tag - The local name of the elements to match on. The
special value "*" matches all local names.NodeList object containing all the matched
Elements.public boolean hasAttribute(java.lang.String name)
Elementtrue when an attribute with a given name is
specified on this element or has a default value, false
otherwise.hasAttribute in interface Elementname - The name of the attribute to look for.true if an attribute with the given name is
specified on this element or has a default value, false
otherwise.public boolean hasAttributeNS(java.lang.String nsURI,
java.lang.String name)
Elementtrue when an attribute with a given local name and
namespace URI is specified on this element or has a default value,
false otherwise. HTML-only DOM implementations do not
need to implement this method.hasAttributeNS in interface ElementnsURI - The namespace URI of the attribute to look for.name - The local name of the attribute to look for.true if an attribute with the given local name
and namespace URI is specified or has a default value on this
element, false otherwise.public XDBNodeList getChildrenByTagName(java.lang.String tagName)
public XDBNodeList getChildrenByTagNameNS(java.lang.String tagName, java.lang.String ns)
public java.lang.String resolveNSPrefix(java.lang.String prefix)
public TypeInfo getSchemaTypeInfo()
public void setIdAttribute(java.lang.String name,
boolean isId)
throws DOMException
DOMExceptionpublic void setIdAttributeNS(java.lang.String namespaceURI,
java.lang.String localName,
boolean isId)
throws DOMException
DOMExceptionpublic void setIdAttributeNode(Attr idAttr, boolean isId) throws DOMException
DOMExceptionCopyright © 2003, 2025, Oracle and/or its affiliates.