JDOM 1.0 | ||
Frames | No Frames |
Methods which throw type org.jdom.JDOMException | |
XPath | XPath.newInstance(String path) Creates a new XPath wrapper object, compiling the specified
XPath expression. |
Number | XPath.numberValueOf(Object context) Returns the number value of the first node selected by applying
the wrapped XPath expression to the given context. |
List | XPath.selectNodes(Object context) Evaluates the wrapped XPath expression and returns the list
of selected items. |
List | XPath.selectNodes(Object context, String path) Evaluates an XPath expression and returns the list of selected
items. |
Object | XPath.selectSingleNode(Object context) Evaluates the wrapped XPath expression and returns the first
entry in the list of selected nodes (or atomics). |
Object | XPath.selectSingleNode(Object context, String path) Evaluates the wrapped XPath expression and returns the first
entry in the list of selected nodes (or atomics). |
void | XPath.setXPathClass(Class aClass) Sets the concrete XPath subclass to use when allocating XPath
instances. |
String | Returns the string value of the first node selected by applying
the wrapped XPath expression to the given context. |
Classes derived from org.jdom.JDOMException | |
class | Thrown when a data conversion from a string to value type fails, such as
can happen with the Attribute convenience getter functions. |
Methods which throw type org.jdom.JDOMException | |
Document | This creates an empty Document object based
on a specific parser implementation. |
Document | This creates an empty Document object based
on a specific parser implementation. |
Document | This creates an empty Document object based
on a specific parser implementation. |
Document | This creates an empty Document object based
on a specific parser implementation. |
Document | This creates an empty Document object based
on a specific parser implementation. |
Document | This creates an empty Document object based
on a specific parser implementation. |
Document | This creates an empty Document object based
on a specific parser implementation. |
Document | This creates an empty Document object based
on a specific parser implementation. |
Document | This creates an empty Document object based
on a specific parser implementation with the given DOCTYPE. |
Document | This creates an empty Document object based
on a specific parser implementation with the given DOCTYPE. |
Document | AbstractDOMAdapter.getDocument(File filename, boolean validate) This creates a new from an
existing InputStream by letting a DOM
parser handle parsing using the supplied stream. |
Document | DOMAdapter.getDocument(File filename, boolean validate) This creates a new Document from a
given filename by letting a DOM parser handle parsing from the file. |
Document | AbstractDOMAdapter.getDocument(InputStream in, boolean validate) This creates a new from an
existing InputStream by letting a DOM
parser handle parsing using the supplied stream. |
Document | CrimsonDOMAdapter.getDocument(InputStream in, boolean validate) This creates a new from an
existing InputStream by letting a DOM
parser handle parsing using the supplied stream. |
Document | DOMAdapter.getDocument(InputStream in, boolean validate) This creates a new Document from an
existing InputStream by letting a DOM
parser handle parsing using the supplied stream. |
Document | JAXPDOMAdapter.getDocument(InputStream in, boolean validate) This creates a new from an
existing InputStream by letting a JAXP
parser handle parsing using the supplied stream. |
Document | OracleV1DOMAdapter.getDocument(InputStream in, boolean validate) This creates a new from an
existing InputStream by letting a DOM
parser handle parsing using the supplied stream. |
Document | OracleV2DOMAdapter.getDocument(InputStream in, boolean validate) This creates a new from an
existing InputStream by letting a DOM
parser handle parsing using the supplied stream. |
Document | XercesDOMAdapter.getDocument(InputStream in, boolean validate) This creates a new from an
existing InputStream by letting a DOM
parser handle parsing using the supplied stream. |
Document | XML4JDOMAdapter.getDocument(InputStream in, boolean validate) This creates a new from an
existing InputStream by letting a DOM
parser handle parsing using the supplied stream. |
Classes derived from org.jdom.JDOMException | |
class | Thrown when an XSL stylesheet fails to compile or an XSL transform fails
|
Methods which throw type org.jdom.JDOMException | |
void | SAXOutputter.output(List nodes) This will output a list of JDOM nodes as a document, firing
off the SAX events that have been registered. |
org.w3c.dom.Document | This converts the JDOM Document parameter to a
DOM Document, returning the DOM version. |
void | This will output the JDOM Document , firing off the
SAX events that have been registered. |
void | This will output a single JDOM element as a document, firing
off the SAX events that have been registered. |
void | SAXOutputter.outputFragment(List nodes) This will output a list of JDOM nodes as a fragment of an XML
document, firing off the SAX events that have been registered. |
void | This will output a single JDOM nodes as a fragment of an XML
document, firing off the SAX events that have been registered. |
Classes derived from org.jdom.JDOMException | |
class | Thrown during parse errors, with information about where the parse error
occurred as well as access to the partially built document. |
Methods which throw type org.jdom.JDOMException | |
Document | SAXBuilder.build(File file)
This builds a document from the supplied
filename. |
Document | SAXBuilder.build(InputSource in) This builds a document from the supplied
input source. |
Document | SAXBuilder.build(InputStream in)
This builds a document from the supplied
input stream. |
Document | SAXBuilder.build(InputStream in, String systemId)
This builds a document from the supplied
input stream. |
Document | SAXBuilder.build(Reader characterStream)
This builds a document from the supplied
Reader. |
Document | SAXBuilder.build(Reader characterStream, String systemId)
This builds a document from the supplied
Reader. |
Document | SAXBuilder.build(String systemId)
This builds a document from the supplied
URI. |
Document | SAXBuilder.build(URL url)
This builds a document from the supplied
URL. |
void | This configures the XMLReader to be used for reading the XML document. |
XMLReader | This creates the XMLReader to be used for reading the XML document. |