- addAttribute(Attribute) - Method in class nu.xom.Element
-
Adds an attribute to this element, replacing any existing
attribute with the same local name and namespace URI.
- addNamespace(String, String) - Method in class nu.xom.XPathContext
-
Binds the specified prefix to the specified namespace URI.
- addNamespaceDeclaration(String, String) - Method in class nu.xom.Element
-
Declares a namespace prefix.
- append(Node) - Method in class nu.xom.Nodes
-
Adds a node at the end of this list.
- appendChild(String) - Method in class nu.xom.Element
-
Converts a string to a text node
and appends that node to the children of this node.
- appendChild(Node) - Method in class nu.xom.ParentNode
-
Appends a node to the children of this node.
- assertEquals(Text, Text) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two text nodes are equal.
- assertEquals(String, Text, Text) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two text nodes are equal.
- assertEquals(Attribute, Attribute) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two attribute nodes are equal.
- assertEquals(String, Attribute, Attribute) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two attribute nodes are equal.
- assertEquals(DocType, DocType) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two DocType
nodes are equal.
- assertEquals(String, DocType, DocType) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two DocType
nodes are equal.
- assertEquals(Element, Element) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two element nodes are equal.
- assertEquals(String, Element, Element) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two element nodes are equal.
- assertEquals(Document, Document) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two document nodes are equal.
- assertEquals(String, Document, Document) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two document nodes are equal.
- assertEquals(Comment, Comment) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two comment nodes are equal.
- assertEquals(String, Comment, Comment) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two comment nodes are equal.
- assertEquals(ProcessingInstruction, ProcessingInstruction) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two processing instruction nodes are equal.
- assertEquals(String, ProcessingInstruction, ProcessingInstruction) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two processing instruction nodes are equal.
- assertEquals(String, Namespace, Namespace) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two namespace nodes are equal.
- assertEquals(Node, Node) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two nodes are equal.
- assertEquals(String, Node, Node) - Static method in class nu.xom.tests.XOMTestCase
-
Asserts that two nodes are equal.
- Attribute - Class in nu.xom
-
This class represents an attribute such as
type="empty"
or
xlink:href="http://www.example.com"
.
- Attribute(String, String) - Constructor for class nu.xom.Attribute
-
Creates a new attribute in no namespace with the
specified name and value and undeclared type.
- Attribute(String, String, Attribute.Type) - Constructor for class nu.xom.Attribute
-
Creates a new attribute in no namespace with the
specified name, value, and type.
- Attribute(String, String, String) - Constructor for class nu.xom.Attribute
-
Creates a new attribute in the specified namespace with the
specified name and value and undeclared type.
- Attribute(String, String, String, Attribute.Type) - Constructor for class nu.xom.Attribute
-
Creates a new attribute in the specified namespace with the
specified name, value, and type.
- Attribute(Attribute) - Constructor for class nu.xom.Attribute
-
Creates a copy of the specified attribute.
- Attribute.Type - Class in nu.xom
-
Uses the type-safe enumeration
design pattern to represent attribute types,
as specified by XML DTDs.