- CANONICAL_XML - Static variable in class nu.xom.canonical.Canonicalizer
-
- CANONICAL_XML_11 - Static variable in class nu.xom.canonical.Canonicalizer
-
- CANONICAL_XML_11_WITH_COMMENTS - Static variable in class nu.xom.canonical.Canonicalizer
-
- CANONICAL_XML_WITH_COMMENTS - Static variable in class nu.xom.canonical.Canonicalizer
-
- CanonicalizationException - Exception in nu.xom.canonical
-
Indicates problems with canonicalization.
- CanonicalizationException(String) - Constructor for exception nu.xom.canonical.CanonicalizationException
-
Creates a new CanonicalizationException
with a detail message.
- Canonicalizer - Class in nu.xom.canonical
-
- Canonicalizer(OutputStream) - Constructor for class nu.xom.canonical.Canonicalizer
-
Creates a Canonicalizer
that outputs a
canonical XML document with comments.
- Canonicalizer(OutputStream, boolean) - Constructor for class nu.xom.canonical.Canonicalizer
-
Creates a Canonicalizer
that outputs a
canonical XML document with or without comments.
- Canonicalizer(OutputStream, String) - Constructor for class nu.xom.canonical.Canonicalizer
-
Creates a Canonicalizer
that outputs a
canonical XML document using the specified algorithm.
- CDATA - Static variable in class nu.xom.Attribute.Type
-
The type of attributes declared to have type CDATA
in the DTD.
- Comment - Class in nu.xom
-
This class represents an XML comment such as
<-- This is a comment-->
.
- Comment(String) - Constructor for class nu.xom.Comment
-
Creates a new Comment
object from string data.
- Comment(Comment) - Constructor for class nu.xom.Comment
-
Creates a new comment that's a copy of its argument.
- contains(Node) - Method in class nu.xom.Nodes
-
Determines whether a node is contained in this list.
- convert(Document) - Static method in class nu.xom.converters.DOMConverter
-
Translates a DOM org.w3c.dom.Document
object
into an equivalent nu.xom.Document
object.
- convert(Document, NodeFactory) - Static method in class nu.xom.converters.DOMConverter
-
Translates a DOM org.w3c.dom.Document
object
into an equivalent nu.xom.Document
object as
controlled by a factory.
- convert(DocumentFragment) - Static method in class nu.xom.converters.DOMConverter
-
Translates a DOM org.w3c.dom.DocumentFragment
object into an equivalent nu.xom.Nodes
object.
- convert(DocumentFragment, NodeFactory) - Static method in class nu.xom.converters.DOMConverter
-
Translates a DOM org.w3c.dom.DocumentFragment
object into an equivalent nu.xom.Nodes
object,
converting each DOM node as specified by a factory.
- convert(Comment) - Static method in class nu.xom.converters.DOMConverter
-
Translates a DOM org.w3c.dom.Comment
object
into an equivalent nu.xom.Comment
object.
- convert(Text) - Static method in class nu.xom.converters.DOMConverter
-
Translates a DOM org.w3c.dom.Text
object
into an equivalent nu.xom.Text
.
- convert(Attr) - Static method in class nu.xom.converters.DOMConverter
-
Translates a DOM org.w3c.dom.Attr
object
into an equivalent nu.xom.Attribute
object.
- convert(ProcessingInstruction) - Static method in class nu.xom.converters.DOMConverter
-
Translates a DOM org.w3c.dom.ProcessingInstruction
object into an equivalent
nu.xom.ProcessingInstruction
object.
- convert(DocumentType) - Static method in class nu.xom.converters.DOMConverter
-
Translates a DOM org.w3c.dom.DocumentType
object into an equivalent nu.xom.DocType
object.
- convert(Element) - Static method in class nu.xom.converters.DOMConverter
-
Translates a DOM org.w3c.dom.Element
object into an equivalent nu.xom.Element
object.
- convert(Document, DOMImplementation) - Static method in class nu.xom.converters.DOMConverter
-
Translates a XOM nu.xom.Document
object
into an equivalent org.w3c.dom.Document
object.
- convert(Document) - Method in class nu.xom.converters.SAXConverter
-
Feed a document through this converter.
- convert(Nodes) - Method in class nu.xom.converters.SAXConverter
-
Converts a Nodes
list into SAX by firing events
into the registered handlers.
- copy() - Method in class nu.xom.Attribute
-
Creates a deep copy of this attribute that
is not attached to an element.
- copy() - Method in class nu.xom.Comment
-
Returns a deep copy of this Comment
object
which contains the same text, but does not have any parent.
- copy() - Method in class nu.xom.DocType
-
Returns a copy of this DocType
which has the same system ID, public ID, root element name,
and internal DTD subset, but does not belong to a document.
- copy() - Method in class nu.xom.Document
-
Returns a complete copy of this document.
- copy() - Method in class nu.xom.Element
-
Creates a deep copy of this element with no parent,
that can be added to this document or a different one.
- copy() - Method in class nu.xom.Namespace
-
Returns a copy of this namespace which has
the same prefix and URI, but no parent.
- copy() - Method in class nu.xom.Node
-
Returns a deep copy of this node with no parent,
that can be added to the current document or a different one.
- copy() - Method in class nu.xom.ProcessingInstruction
-
Returns a deep copy of this processing instruction with no
parent, that can be added to this document or a different
one.
- copy() - Method in class nu.xom.Text
-
Returns a deep copy of this Text
with no parent,
that can be added to this document or a different one.
- CycleException - Exception in nu.xom
-
Indicates an attempt to
insert an ancestor element as one of its own descendants.
- CycleException(String) - Constructor for exception nu.xom.CycleException
-
Creates a new CycleException
with a detail message.
- CycleException(String, Throwable) - Constructor for exception nu.xom.CycleException
-
Creates a new CycleException
with a detail message
and an underlying root cause.