接口 | 说明 |
---|---|
JDOMFactory |
An interface to be used by builders when constructing JDOM objects.
|
NamespaceAware |
Classes implementing this interface are all sensitive to their
Namespace context. |
Parent |
类 | 说明 |
---|---|
Attribute |
An XML attribute.
|
CDATA |
An XML CDATA section.
|
Comment |
An XML comment.
|
Content |
Superclass for JDOM objects which can be legal child content
of
Parent nodes. |
DefaultJDOMFactory |
Creates the standard top-level JDOM classes (Element, Document, Comment,
etc).
|
DocType |
An XML DOCTYPE declaration.
|
Document |
An XML document.
|
Element |
An XML element.
|
EntityRef |
An XML entity reference.
|
JDOMConstants |
A collection of constants that may be useful to JDOM users.
|
Namespace |
An XML namespace representation, as well as a factory for creating XML
namespace objects.
|
ProcessingInstruction |
An XML processing instruction.
|
SlimJDOMFactory |
This JDOMFactory instance reduces the amount of memory used by JDOM content.
|
Text |
An XML character sequence.
|
UncheckedJDOMFactory |
Special factory for building documents without any content or structure
checking.
|
Verifier |
A utility class to handle well-formedness checks on names, data, and other
verification tasks for JDOM.
|
枚举 | 说明 |
---|---|
AttributeType |
Use a simple enumeration for the Attribute Types
|
Content.CType |
An enumeration useful for identifying content types without
having to do instanceof type conditionals.
|
异常错误 | 说明 |
---|---|
DataConversionException |
Thrown when a data conversion from a string to value type fails, such as
can happen with the
Attribute convenience getter functions. |
IllegalAddException |
Thrown when trying to add an illegal object to a JDOM construct.
|
IllegalDataException |
Thrown when illegal text is supplied to a JDOM construct.
|
IllegalNameException |
Thrown when a name is supplied in construction of a JDOM construct whose
where the name breaks XML naming conventions.
|
IllegalTargetException |
Thrown when a target is supplied in construction of a JDOM
ProcessingInstruction , and that name breaks XML naming conventions. |
JDOMException |
The top level 'checked' exception that JDOM classes can throw.
|