A B C D E F G H I J M N O P R S T V W X

G

getAdditionalNamespaces() - Method in class org.jdom.Element
This will return any namespace declarations on this element that exist, excluding the namespace of the element itself, which can be obtained through Element.getNamespace().
getAttribute(String) - Method in class org.jdom.Element
This returns the attribute for this element with the given name and within no namespace.
getAttribute(String, Namespace) - Method in class org.jdom.Element
This returns the attribute for this element with the given name and within the given Namespace.
getAttributes() - Method in class org.jdom.Element
This returns the complete set of attributes for this element, as a List of Attribute objects in no particular order, or an empty list if there are none.
getAttributeValue(String) - Method in class org.jdom.Element
This returns the attribute value for the attribute with the given name and within no namespace, null if there is no such attribute, and the empty string if the attribute value is empty.
getAttributeValue(String, Namespace) - Method in class org.jdom.Element
This returns the attribute value for the attribute with the given name and within the given Namespace, null if there is no such attribute, and the empty string if the attribute value is empty.
getBooleanValue() - Method in class org.jdom.Attribute
This gets the value of the attribute, in boolean form, and if no conversion can occur, throws a DataConversionException
getCause() - Method in class org.jdom.JDOMException
This will return the root cause Throwable, or null if one does not exist.
getChild(String) - Method in class org.jdom.Element
This returns the first child element within this element with the given local name and belonging to no namespace.
getChild(String, Namespace) - Method in class org.jdom.Element
This returns the first child element within this element with the given local name and belonging to the given namespace.
getChildren() - Method in class org.jdom.Element
This returns a List of all the child elements nested directly (one level deep) within this element, as Element objects.
getChildren(String) - Method in class org.jdom.Element
This returns a List of all the child elements nested directly (one level deep) within this element with the given local name and belonging to no namespace, returned as Element objects.
getChildren(String, Namespace) - Method in class org.jdom.Element
This returns a List of all the child elements nested directly (one level deep) within this element with the given local name and belonging to the given Namespace, returned as Element objects.
getChildText(String) - Method in class org.jdom.Element
This convenience method returns the textual content of the named child element, or returns an empty String ("") if the child has no textual content.
getChildText(String, Namespace) - Method in class org.jdom.Element
This convenience method returns the textual content of the named child element, or returns null if there's no such child.
getChildTextTrim(String) - Method in class org.jdom.Element
This convenience method returns the trimmed textual content of the named child element, or returns null if there's no such child.
getChildTextTrim(String, Namespace) - Method in class org.jdom.Element
This convenience method returns the trimmed textual content of the named child element, or returns null if there's no such child.
getContent() - Method in class org.jdom.Document
This will return all content for the Document.
getContent() - Method in class org.jdom.Element
This returns the full content of the element as a List which may contain objects of type String, Element, Comment, ProcessingInstruction, CDATA, and EntityRef.
getCopy(String) - Method in class org.jdom.Element
Deprecated. Deprecated in beta7, use clone() and setName() instead
getCopy(String, Namespace) - Method in class org.jdom.Element
Deprecated. Deprecated in beta7, use clone(), setName(), and setNamespace() instead
getData() - Method in class org.jdom.ProcessingInstruction
This will return the raw data from all instructions.
getDocType() - Method in class org.jdom.Document
This will return the DocType declaration for this Document, or null if none exists.
getDocument() - Method in class org.jdom.transform.JDOMResult
Returns the document produced as result of an XSL Transformation.
getDocument() - Method in class org.jdom.transform.JDOMSource
Returns the source document used by this TRaX source.
getDocument() - Method in class org.jdom.input.SAXHandler
Returns the document.
getDocument() - Method in class org.jdom.ProcessingInstruction
This retrieves the owning Document for this PI, or null if not a currently a member of a Document.
getDocument() - Method in class org.jdom.Text
This retrieves the owning Document for this Text, or null if not a currently a member of a Document.
getDocument() - Method in class org.jdom.Comment
This retrieves the owning Document for this Comment, or null if not a currently a member of a Document.
getDocument() - Method in class org.jdom.EntityRef
This retrieves the owning Document for this Entity, or null if not a currently a member of a Document.
getDocument() - Method in class org.jdom.Attribute
This retrieves the owning Document for this Attribute, or null if not a currently a member of a Document.
getDocument() - Method in class org.jdom.DocType
This retrieves the owning Document for this DocType, or null if not a currently a member of a Document.
getDocument() - Method in class org.jdom.Element
This retrieves the owning Document for this Element, or null if not a currently a member of a Document.
getDocument(File, boolean) - Method in interface org.jdom.adapters.DOMAdapter
This creates a new Document from a given filename by letting a DOM parser handle parsing from the file.
getDocument(File, boolean) - Method in class org.jdom.adapters.AbstractDOMAdapter
This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
getDocument(InputStream, boolean) - Method in interface org.jdom.adapters.DOMAdapter
This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
getDocument(InputStream, boolean) - Method in class org.jdom.adapters.AbstractDOMAdapter
This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
getDocument(InputStream, boolean) - Method in class org.jdom.adapters.ProjectXDOMAdapter
This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
getDocument(InputStream, boolean) - Method in class org.jdom.adapters.JAXPDOMAdapter
This creates a new Document from an existing InputStream by letting a JAXP parser handle parsing using the supplied stream.
getDocument(InputStream, boolean) - Method in class org.jdom.adapters.CrimsonDOMAdapter
This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
getDocument(InputStream, boolean) - Method in class org.jdom.adapters.XercesDOMAdapter
This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
getDocument(InputStream, boolean) - Method in class org.jdom.adapters.OracleV2DOMAdapter
This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
getDocument(InputStream, boolean) - Method in class org.jdom.adapters.XML4JDOMAdapter
This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
getDocument(InputStream, boolean) - Method in class org.jdom.adapters.OracleV1DOMAdapter
This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
getDoubleValue() - Method in class org.jdom.Attribute
This gets the value of the attribute, in double form, and if no conversion can occur, throws a DataConversionException
getElementName() - Method in class org.jdom.DocType
This will retrieve the element name being constrained.
getFactory() - Method in class org.jdom.transform.JDOMResult
Returns the custom JDOMFactory used to build the result document.
getFloatValue() - Method in class org.jdom.Attribute
This gets the value of the attribute, in float form, and if no conversion can occur, throws a DataConversionException
getIntValue() - Method in class org.jdom.Attribute
This gets the value of the attribute, in int form, and if no conversion can occur, throws a DataConversionException
getLongValue() - Method in class org.jdom.Attribute
This gets the value of the attribute, in long form, and if no conversion can occur, throws a DataConversionException
getMessage() - Method in class org.jdom.JDOMException
This returns the message for the Exception.
getMixedContent() - Method in class org.jdom.Document
Deprecated. Deprecated in beta7, use getContent() instead
getMixedContent() - Method in class org.jdom.Element
Deprecated. Deprecated in beta7, use getContent() instead
getName() - Method in class org.jdom.EntityRef
This returns the name of the EntityRef.
getName() - Method in class org.jdom.Attribute
This will retrieve the local name of the Attribute.
getName() - Method in class org.jdom.Element
This returns the (local) name of the Element, without any namespace prefix, if one exists.
getNamespace() - Method in class org.jdom.Attribute
This will return this Attribute's Namespace.
getNamespace() - Method in class org.jdom.Element
This will return this Element's Namespace.
getNamespace(String) - Static method in class org.jdom.Namespace
This will retrieve (if in existence) or create (if not) a Namespace for the supplied URI, and make it usable as a default namespace, as no prefix is supplied.
getNamespace(String) - Method in class org.jdom.Element
This returns the Namespace in scope on this element for the given prefix (this involves searching up the tree, so the results depend on the current location of the element).
getNamespace(String, String) - Static method in class org.jdom.Namespace
This will retrieve (if in existence) or create (if not) a Namespace for the supplied prefix and URI.
getNamespacePrefix() - Method in class org.jdom.Attribute
This will retrieve the namespace prefix of the Attribute.
getNamespacePrefix() - Method in class org.jdom.Element
This returns the namespace prefix of the Element, if one exists.
getNamespaceURI() - Method in class org.jdom.Attribute
This returns the URI mapped to this Attribute's prefix.
getNamespaceURI() - Method in class org.jdom.Element
This returns the URI mapped to this Element's prefix (or the default namespace if no prefix).
getParent() - Method in class org.jdom.ProcessingInstruction
This will return the parent of this ProcessingInstruction.
getParent() - Method in class org.jdom.Text
This will return the parent of this Text node, which is always a JDOM Element.
getParent() - Method in class org.jdom.Comment
This will return the parent of this Comment.
getParent() - Method in class org.jdom.EntityRef
This will return the parent of this EntityRef.
getParent() - Method in class org.jdom.Attribute
This will return the parent of this Attribute.
getParent() - Method in class org.jdom.Element
This will return the parent of this Element.
getPrefix() - Method in class org.jdom.Namespace
This returns the prefix mapped to this Namespace.
getProcessingInstruction(String) - Method in class org.jdom.Document
Deprecated. Deprecated in beta7, use getContent() and examine for PIs manually
getProcessingInstructions() - Method in class org.jdom.Document
Deprecated. Deprecated in beta7, use getContent() and examine for PIs manually
getProcessingInstructions(String) - Method in class org.jdom.Document
Deprecated. Deprecated in beta7, use getContent() and examine for PIs manually
getPublicID() - Method in class org.jdom.EntityRef
This will return the publid ID of this EntityRef.
getPublicID() - Method in class org.jdom.DocType
This will retrieve the public ID of an externally referenced DTD, or an empty String if none is referenced.
getQualifiedName() - Method in class org.jdom.Attribute
This will retrieve the qualified name of the Attribute.
getQualifiedName() - Method in class org.jdom.Element
This returns the full name of the Element, in the form [namespacePrefix]:[localName].
getRootCause() - Method in class org.jdom.JDOMException
Deprecated. Deprecated in beta7, use getCause() instead which follows the JDK 1.4 naming convention
getRootElement() - Method in class org.jdom.Document
This will return the root Element for this Document
getSerializedForm() - Method in class org.jdom.ProcessingInstruction
Deprecated. Deprecated in Beta7, use XMLOutputter.outputString(ProcessingInstruction) instead
getSerializedForm() - Method in class org.jdom.Comment
Deprecated. Deprecated in beta7, use XMLOutputter.outputString(Comment) instead
getSerializedForm() - Method in class org.jdom.CDATA
Deprecated. Deprecated in Beta7, use XMLOutputter.outputString(CDATA) instead
getSerializedForm() - Method in class org.jdom.Document
Deprecated. Deprecated in beta7, use XMLOutputter.outputString(Document) instead
getSerializedForm() - Method in class org.jdom.Attribute
Deprecated. Deprecated in Beta7, use XMLOutputter.outputString(Attribute) instead
getSerializedForm() - Method in class org.jdom.DocType
Deprecated. Deprecated in Beta7, use XMLOutputter.outputString(DocType) instead
getSerializedForm() - Method in class org.jdom.Element
Deprecated. Deprecated in beta7, use XMLOutputter.outputString(Element) instead
getSystemID() - Method in class org.jdom.EntityRef
This will return the system ID of this EntityRef.
getSystemID() - Method in class org.jdom.DocType
This will retrieve the system ID of an externally referenced DTD, or an empty String if none is referenced.
getTarget() - Method in class org.jdom.ProcessingInstruction
This will retrieve the target of the PI.
getText() - Method in class org.jdom.Comment
This returns the textual data within the Comment.
getText() - Method in class org.jdom.CDATA
This returns the textual data within the CDATA.
getText() - Method in class org.jdom.Element
This returns the textual content directly held under this element.
getTextNormalize() - Method in class org.jdom.Element
This returns the textual content of this element with all surrounding whitespace removed and internal whitespace normalized to a single space.
getTextTrim() - Method in class org.jdom.Element
This returns the textual content of this element with all surrounding whitespace removed.
getURI() - Method in class org.jdom.Namespace
This returns the namespace URI for this Namespace.
getValue() - Method in class org.jdom.Text
This returns the value of this Text node as a Java String.
getValue() - Method in class org.jdom.Attribute
This will return the actual textual value of this Attribute.
getValue(String) - Method in class org.jdom.ProcessingInstruction
This will return the value for a specific name/value pair on the PI.
getXMLReader() - Method in class org.jdom.transform.JDOMSource
Returns the XMLReader to be used for the Source.

A B C D E F G H I J M N O P R S T V W X
Copyright © 2001 Jason Hunter, Brett McLaughlin. All Rights Reserved.