- element(String, Namespace) - Method in class org.jdom.DefaultJDOMFactory
-
- element(String) - Method in class org.jdom.DefaultJDOMFactory
-
- element(String, String) - Method in class org.jdom.DefaultJDOMFactory
-
- element(String, String, String) - Method in class org.jdom.DefaultJDOMFactory
-
- Element - Class in org.jdom
-
An XML element.
- Element() - Constructor for class org.jdom.Element
-
This protected constructor is provided in order to support an Element
subclass that wants full control over variable initialization.
- Element(String, Namespace) - Constructor for class org.jdom.Element
-
Creates a new element with the supplied (local) name and namespace.
- Element(String) - Constructor for class org.jdom.Element
-
Create a new element with the supplied (local) name and no namespace.
- Element(String, String) - Constructor for class org.jdom.Element
-
Creates a new element with the supplied (local) name and a namespace
given by a URI.
- Element(String, String, String) - Constructor for class org.jdom.Element
-
Creates a new element with the supplied (local) name and a namespace
given by the supplied prefix and URI combination.
- ELEMENT - Static variable in class org.jdom.filter.ContentFilter
-
- element(String, Namespace) - Method in interface org.jdom.JDOMFactory
-
This will create a new
Element
with the supplied (local) name, and define
the
Namespace
to be used.
- element(String) - Method in interface org.jdom.JDOMFactory
-
- element(String, String) - Method in interface org.jdom.JDOMFactory
-
This will create a new
Element
with
the supplied (local) name, and specifies the URI
of the
Namespace
the
Element
should be in, resulting it being unprefixed (in the default
namespace).
- element(String, String, String) - Method in interface org.jdom.JDOMFactory
-
This will create a new
Element
with
the supplied (local) name, and specifies the prefix and URI
of the
Namespace
the
Element
should be in.
- element(String, Namespace) - Method in class org.jdom.UncheckedJDOMFactory
-
- element(String) - Method in class org.jdom.UncheckedJDOMFactory
-
- element(String, String) - Method in class org.jdom.UncheckedJDOMFactory
-
- element(String, String, String) - Method in class org.jdom.UncheckedJDOMFactory
-
- elementDecl(String, String) - Method in class org.jdom.input.SAXHandler
-
Handle an element declaration in a DTD.
- ElementFilter - Class in org.jdom.filter
-
A Filter that only matches
Element
objects.
- ElementFilter() - Constructor for class org.jdom.filter.ElementFilter
-
Select only the Elements.
- ElementFilter(String) - Constructor for class org.jdom.filter.ElementFilter
-
Select only the Elements with the supplied name in any Namespace.
- ElementFilter(Namespace) - Constructor for class org.jdom.filter.ElementFilter
-
Select only the Elements with the supplied Namespace.
- ElementFilter(String, Namespace) - Constructor for class org.jdom.filter.ElementFilter
-
Select only the Elements with the supplied name and Namespace.
- elementName - Variable in class org.jdom.DocType
-
The element being constrained
- endCDATA() - Method in class org.jdom.input.SAXHandler
-
Report a CDATA section
- endDTD() - Method in class org.jdom.input.SAXHandler
-
This signifies that the reading of the DTD is complete.
- endElement(String, String, String) - Method in class org.jdom.input.SAXHandler
-
Indicates the end of an element
(</[element name]>
) is reached.
- endEntity(String) - Method in class org.jdom.input.SAXHandler
-
- ENTITIES_TYPE - Static variable in class org.jdom.Attribute
-
Attribute type: the attribute value is a list of entity names.
- ENTITY_TYPE - Static variable in class org.jdom.Attribute
-
Attribute type: the attribute value is the name of an entity.
- entityRef(String) - Method in class org.jdom.DefaultJDOMFactory
-
- entityRef(String, String, String) - Method in class org.jdom.DefaultJDOMFactory
-
- entityRef(String, String) - Method in class org.jdom.DefaultJDOMFactory
-
- EntityRef - Class in org.jdom
-
An XML entity reference.
- EntityRef() - Constructor for class org.jdom.EntityRef
-
Default, no-args constructor for implementations to use if needed.
- EntityRef(String) - Constructor for class org.jdom.EntityRef
-
This will create a new EntityRef
with the supplied name.
- EntityRef(String, String) - Constructor for class org.jdom.EntityRef
-
This will create a new EntityRef
with the supplied name and system id.
- EntityRef(String, String, String) - Constructor for class org.jdom.EntityRef
-
This will create a new EntityRef
with the supplied name, public id, and system id.
- ENTITYREF - Static variable in class org.jdom.filter.ContentFilter
-
- entityRef(String) - Method in interface org.jdom.JDOMFactory
-
This will create a new EntityRef
with the supplied name.
- entityRef(String, String, String) - Method in interface org.jdom.JDOMFactory
-
This will create a new EntityRef
with the supplied name, public ID, and system ID.
- entityRef(String, String) - Method in interface org.jdom.JDOMFactory
-
This will create a new EntityRef
with the supplied name and system ID.
- entityRef(String) - Method in class org.jdom.UncheckedJDOMFactory
-
- entityRef(String, String) - Method in class org.jdom.UncheckedJDOMFactory
-
- entityRef(String, String, String) - Method in class org.jdom.UncheckedJDOMFactory
-
- ENUMERATED_TYPE - Static variable in class org.jdom.Attribute
-
Attribute type: the attribute value is a name token from an
enumeration.
- equals(Object) - Method in class org.jdom.Attribute
-
This tests for equality of this Attribute
to the supplied
Object
.
- equals(Object) - Method in class org.jdom.Content
-
This tests for equality of this Content object to the supplied object.
- equals(Object) - Method in class org.jdom.Document
-
This tests for equality of this Document
to the supplied
Object
.
- equals(Object) - Method in class org.jdom.filter.ContentFilter
-
Returns whether the two filters are equivalent (i.e. the
matching mask values are identical).
- equals(Object) - Method in class org.jdom.filter.ElementFilter
-
Returns whether the two filters are equivalent (i.e. the
matching names and namespace are equivalent).
- equals(Object) - Method in class org.jdom.Namespace
-
This tests for equality - Two Namespaces
are equal if and only if their URIs are byte-for-byte equals.
- error(SAXParseException) - Method in class org.jdom.input.BuilderErrorHandler
-
This method is called in response to an error that has occurred;
this indicates that a rule was broken, typically in validation, but
that parsing could reasonably continue.
- escapeAttributeEntities(String) - Method in class org.jdom.output.XMLOutputter
-
This will take the pre-defined entities in XML 1.0 and
convert their character representation to the appropriate
entity reference, suitable for XML attributes.
- escapeElementEntities(String) - Method in class org.jdom.output.XMLOutputter
-
This will take the three pre-defined entities in XML 1.0
(used specifically in XML elements) and convert their character
representation to the appropriate entity reference, suitable for
XML element content.
- EscapeStrategy - Interface in org.jdom.output
-
Logic to determine which characters should be formatted as character
entities.
- externalEntityDecl(String, String, String) - Method in class org.jdom.input.SAXHandler
-
This is called when the parser encounters an external entity
declaration.