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

G

getAttribute(String) - Method in class org.jdom.Element
This will return the Attribute for the specified attribute name on this Element.
getAttribute(String, String) - Method in class org.jdom.Element
This will return the Attribute for the specified attribute name on this Element.
getAttributes() - Method in class org.jdom.Element
This returns the complete set of Attributes for this Element, in no particular order.
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
getBooleanValue(boolean) - Method in class org.jdom.Attribute
This gets the value of the attribute, in boolean form, and if no conversion can occur, returns the supplied default value.
getByteValue() - Method in class org.jdom.Attribute
This gets the value of the attribute, in byte form, and if no conversion can occur, throws a DataConversionException
getByteValue(byte) - Method in class org.jdom.Attribute
This gets the value of the attribute, in byte form, and if no conversion can occur, returns the supplied default value.
getCharValue() - Method in class org.jdom.Attribute
This gets the value of the attribute, in char form, and if no conversion can occur, throws a DataConversionException
getCharValue(char) - Method in class org.jdom.Attribute
This gets the value of the attribute, in char form, and if no conversion can occur, returns the supplied default value.
getChild(String) - Method in class org.jdom.Element
This will return a List of all the XML elements nested directly (one level deep) within this Element whose names match the name specified, each in Element form.
getChild(String, String) - Method in class org.jdom.Element
This will return the child Elements for the specified element name on this Element.
getChildren() - Method in class org.jdom.Entity
This will return a List of all the XML elements nested directly (one level deep) within this Entity, each in Element form.
getChildren() - Method in class org.jdom.Element
This will return a List of all the XML elements nested directly (one level deep) within this Element, each in Element form.
getChildren(String) - Method in class org.jdom.Element
This will return a List of all the XML elements nested directly (one level deep) within this Element whose names match the name specified, each in Element form.
getChildren(String, String) - Method in class org.jdom.Element
This will return the children Elements for the specified element name on this Element.
getContent() - Method in class org.jdom.Entity
This will return the actual textual content of this Entity.
getContent() - Method in class org.jdom.Document
This will return all content for the Document.
getContent() - Method in class org.jdom.Element
This will return the actual textual content of this Element.
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(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.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.
getDocument(String, 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(String, 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.
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
getDoubleValue(double) - Method in class org.jdom.Attribute
This gets the value of the attribute, in double form, and if no conversion can occur, returns the supplied default value.
getElementName() - Method in class org.jdom.DocType
This will retrieve the element name being constrained.
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
getFloatValue(float) - Method in class org.jdom.Attribute
This gets the value of the attribute, in float form, and if no conversion can occur, returns the supplied default value.
getFullName() - Method in class org.jdom.Attribute
This will retrieve the full name of the Attrbute.
getFullName() - Method in class org.jdom.Element
This returns the full name of the Element, in the form [namespacePrefix]:[localName].
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
getIntValue(int) - Method in class org.jdom.Attribute
This gets the value of the attribute, in int form, and if no conversion can occur, returns the supplied default value.
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
getLongValue(long) - Method in class org.jdom.Attribute
This gets the value of the attribute, in long form, and if no conversion can occur, returns the supplied default value.
getMixedContent() - Method in class org.jdom.Entity
This will return the content of the entity.
getMixedContent() - Method in class org.jdom.Element
This will return the content of the element.
getName() - Method in class org.jdom.Entity
This returns the name of the Entity.
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.
getNamespaceMappings() - Method in class org.jdom.Document
This will return all namespace mappings.
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(String) - Method in class org.jdom.Document
This will return the URI associated with the supplied prefix, or an empty String if no such mapping exists.
getProcessingInstruction(String) - Method in class org.jdom.Document
This returns the first processing instruction for this Document for the supplied target.
getProcessingInstructions() - Method in class org.jdom.Document
This will return the list of ProcessingInstructions for this Document.
getProcessingInstructions(String) - Method in class org.jdom.Document
This returns the processing instructions for this Document which have the supplied target.
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.
getRootCause() - Method in class org.jdom.JDOMException
This will return the root cause Throwable, or null if one does not exist.
getRootElement() - Method in class org.jdom.Document
This will return the root Element for this Document, or null if there is none.
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.
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.
getValue(String) - Method in class org.jdom.Attribute
This will return the actual textual value of this Attribute.

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