A B C D E F G H I J M N O P R S T U 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, or null if no such attribute exists.
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, or null if no such attribute exists.
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.
getAttributeType() - Method in class org.jdom.Attribute
This will return the actual declared type of this Attribute.
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.
getAttributeValue(String, Namespace, String) - Method in class org.jdom.Element
This returns the attribute value for the attribute with the given name and within the given Namespace, or the passed-in default if there is no such attribute.
getAttributeValue(String, String) - Method in class org.jdom.Element
This returns the attribute value for the attribute with the given name and within no namespace, or the passed-in default if there is no such attribute.
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.
getChildTextNormalize(String) - Method in class org.jdom.Element
This convenience method returns the normalized textual content of the named child element, or returns null if there's no such child.
getChildTextNormalize(String, Namespace) - Method in class org.jdom.Element
This convenience method returns the normalized 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 Text, Element, Comment, ProcessingInstruction, CDATA, and EntityRef.
getContent(Filter) - Method in class org.jdom.Document
Return a filtered view of this Document's content.
getContent(Filter) - Method in class org.jdom.Element
Return a filter view of this Element's content.
getContentHandler() - Method in class org.jdom.output.SAXOutputter
Returns the registered ContentHandler.
getCurrentElement() - Method in class org.jdom.input.SAXHandler
Returns the being-parsed element.
getData() - Method in class org.jdom.ProcessingInstruction
This will return the raw data from all instructions.
getDeclHandler() - Method in class org.jdom.output.SAXOutputter
Return the registered DeclHandler.
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.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.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.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.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.Element
This retrieves the owning Document for this Element, 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.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.input.SAXHandler
Returns the document.
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(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(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(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.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 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.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.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.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.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.OracleV1DOMAdapter
This creates a new Document from an existing InputStream by letting a DOM parser handle parsing using the supplied stream.
getDocumentLocator() - Method in class org.jdom.input.SAXHandler
Provides access to the Locator object provided by the SAX parser.
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
getDTDHandler() - Method in class org.jdom.output.SAXOutputter
Return the registered DTDHandler.
getElementName() - Method in class org.jdom.DocType
This will retrieve the element name being constrained.
getEntityResolver() - Method in class org.jdom.output.SAXOutputter
Return the registered EntityResolver.
getErrorHandler() - Method in class org.jdom.output.SAXOutputter
Return the registered ErrorHandler.
getExpandEntities() - Method in class org.jdom.input.SAXHandler
Returns whether or not entities will be expanded during the build.
getFactory() - Method in class org.jdom.input.SAXHandler
Returns the factory used for constructing objects.
getFactory() - Method in class org.jdom.transform.JDOMResult
Returns the custom JDOMFactory used to build the result document.
getFeature(String) - Method in class org.jdom.output.SAXOutputter
This will look up the value of a SAX feature.
getFilterMask() - Method in class org.jdom.filter.ContentFilter
Return current filtering mask.
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
getIgnoringElementContentWhitespace() - Method in class org.jdom.input.SAXHandler
Returns whether or not the parser will elminate whitespace in element content (sometimes known as "ignorable whitespace") when building the document.
getInternalSubset() - Method in class org.jdom.DocType
This returns the data for the internal subset
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
getLexicalHandler() - Method in class org.jdom.output.SAXOutputter
Return the registered LexicalHandler.
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.
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.
getName() - Method in class org.jdom.EntityRef
This returns the name of the EntityRef.
getNames() - Method in class org.jdom.ProcessingInstruction
This will return a List containing the names of the "attribute" style pieces of name/value pairs in this PI's data.
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.Comment
This will return the parent of this Comment.
getParent() - Method in class org.jdom.Attribute
This will return the parent of this Attribute.
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.Element
This will return the parent of this Element.
getParent() - Method in class org.jdom.EntityRef
This will return the parent of this EntityRef.
getParent() - Method in class org.jdom.ProcessingInstruction
This will return the parent of this ProcessingInstruction.
getPrefix() - Method in class org.jdom.Namespace
This returns the prefix mapped to this Namespace.
getProperty(String) - Method in class org.jdom.output.SAXOutputter
This will look up the value of a SAX property.
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.
getPublicID() - Method in class org.jdom.EntityRef
This will return the publid ID of this EntityRef.
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].
getRootElement() - Method in class org.jdom.Document
This will return the root Element for this Document
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.
getSystemID() - Method in class org.jdom.EntityRef
This will return the system ID of this EntityRef.
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.Text
This returns the value of this Text node as a Java String.
getText() - Method in class org.jdom.Element
This returns the textual content directly held under this element.
getTextNormalize() - Method in class org.jdom.Text
This returns the textual content with all surrounding whitespace removed and internal whitespace normalized to a single space.
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.Text
This returns the textual content with all surrounding whitespace removed.
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.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.
getXPath() - Method in class org.jdom.xpath.XPath
Returns the wrapped XPath expression as a string.

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