Skip navigation links
JDOM
2.0.6.1
A B C D E F G H I J L M N O P R S T U V W X 

X

XML_NAMESPACE - Static variable in class org.jdom2.Namespace
Define a Namespace for the standard xml prefix.
XMLOutputProcessor - Interface in org.jdom2.output.support
This interface provides a base support for the XMLOutputter.
XMLOutputter - Class in org.jdom2.output
Outputs a JDOM document as a stream of bytes.
XMLOutputter(Format, XMLOutputProcessor) - Constructor for class org.jdom2.output.XMLOutputter
This will create an XMLOutputter with the specified format characteristics.
XMLOutputter() - Constructor for class org.jdom2.output.XMLOutputter
This will create an XMLOutputter with a default Format and XMLOutputProcessor.
XMLOutputter(XMLOutputter) - Constructor for class org.jdom2.output.XMLOutputter
This will create an XMLOutputter with the same customisations set in the given XMLOutputter instance.
XMLOutputter(Format) - Constructor for class org.jdom2.output.XMLOutputter
This will create an XMLOutputter with the specified format characteristics.
XMLOutputter(XMLOutputProcessor) - Constructor for class org.jdom2.output.XMLOutputter
This will create an XMLOutputter with the specified XMLOutputProcessor.
XMLReaderJAXPFactory - Class in org.jdom2.input.sax
Create XMLReaders directly from the javax.xml.parsers.SAXParserFactory API using an explicit implementation of the parser instead of relying on the default JAXP search path.
XMLReaderJAXPFactory(String, ClassLoader, boolean) - Constructor for class org.jdom2.input.sax.XMLReaderJAXPFactory
Create an XMLReaderJAXPFactory using the specified factory name, classloader, and dtdvalidating flag.
XMLReaderJDOMFactory - Interface in org.jdom2.input.sax
This interface can be used to supply custom XMLReaders to SAXBuilder.
XMLReaders - Enum in org.jdom2.input.sax
An enumeration of XMLReaderJDOMFactory that allows for a single central location to create XMLReaders.
XMLReaderSAX2Factory - Class in org.jdom2.input.sax
Create XMLReaders directly from the SAX2.0 API using a SAX Driver class name or the default SAX2.0 location process.
XMLReaderSAX2Factory(boolean) - Constructor for class org.jdom2.input.sax.XMLReaderSAX2Factory
The required details for SAX2.0-based XMLReader creation.
XMLReaderSAX2Factory(boolean, String) - Constructor for class org.jdom2.input.sax.XMLReaderSAX2Factory
The required details for SAX2.0-based XMLReader creation.
XMLReaderSchemaFactory - Class in org.jdom2.input.sax
This XMLReaderJDOMFactory class returns XMLReaders configured to validate against the supplied Schema instance.
XMLReaderSchemaFactory(Schema) - Constructor for class org.jdom2.input.sax.XMLReaderSchemaFactory
XMLReader instances from this class will be configured to validate using the supplied Schema instance.
XMLReaderSchemaFactory(String, ClassLoader, Schema) - Constructor for class org.jdom2.input.sax.XMLReaderSchemaFactory
XMLReader instances from this class will be configured to validate using the supplied Schema instance, and use the specified JAXP SAXParserFactory.
XMLReaderXSDFactory - Class in org.jdom2.input.sax
This XMLReaderJDOMFactory class returns XMLReaders configured to validate against the supplied XML Schema (XSD) instance.
XMLReaderXSDFactory(String...) - Constructor for class org.jdom2.input.sax.XMLReaderXSDFactory
Create an XML Schema validating XMLReader factory using one or more XSD sources from SystemID references.
XMLReaderXSDFactory(String, ClassLoader, String...) - Constructor for class org.jdom2.input.sax.XMLReaderXSDFactory
Create an XML Schema validating XMLReader factory using one or more XSD sources from SystemID references, and use the specified JAXP SAXParserFactory.
XMLReaderXSDFactory(URL...) - Constructor for class org.jdom2.input.sax.XMLReaderXSDFactory
Create an XML Schema validating XMLReader factory using one or more XSD sources from URL references.
XMLReaderXSDFactory(String, ClassLoader, URL...) - Constructor for class org.jdom2.input.sax.XMLReaderXSDFactory
Create an XML Schema validating XMLReader factory using one or more XSD sources from URL references, and use the specified JAXP SAXParserFactory.
XMLReaderXSDFactory(File...) - Constructor for class org.jdom2.input.sax.XMLReaderXSDFactory
Create an XML Schema validating XMLReader factory using one or more XSD sources from File references.
XMLReaderXSDFactory(String, ClassLoader, File...) - Constructor for class org.jdom2.input.sax.XMLReaderXSDFactory
Create an XML Schema validating XMLReader factory using one or more XSD sources from File references, and use the specified JAXP SAXParserFactory.
XMLReaderXSDFactory(Source...) - Constructor for class org.jdom2.input.sax.XMLReaderXSDFactory
Create an XML Schema validating XMLReader factory using one or more XSD sources from Transform Source references.
XMLReaderXSDFactory(String, ClassLoader, Source...) - Constructor for class org.jdom2.input.sax.XMLReaderXSDFactory
Create an XML Schema validating XMLReader factory using one or more XSD sources from Transform Source references, and use the specified JAXP SAXParserFactory.
XPath - Class in org.jdom2.xpath
Deprecated.
Use XPathFactory/XPathExpression/XPathBuilder instead.
XPath() - Constructor for class org.jdom2.xpath.XPath
Deprecated.
 
XPathBuilder<T> - Class in org.jdom2.xpath
A helper class for creating XPathExpression instances without having to manage your own Namespace and Variable contexts.
XPathBuilder(String, Filter<T>) - Constructor for class org.jdom2.xpath.XPathBuilder
Create a skeleton XPathBuilder with the given expression and result filter.
XPathDiagnostic<T> - Interface in org.jdom2.xpath
Class representing the results of an XPath query allowing JDOM users to trace whether an item returned from an XPath query is subsequently filtered by the coercion filter attached to the XPathExpression;
XPathDiagnosticImpl<T> - Class in org.jdom2.xpath.util
A diagnostic implementation useful for diagnosing problems in XPath results.
XPathDiagnosticImpl(Object, XPathExpression<T>, List<?>, boolean) - Constructor for class org.jdom2.xpath.util.XPathDiagnosticImpl
Create a useful Diagnostic instance for tracing XPath query results.
XPathExpression<T> - Interface in org.jdom2.xpath
XPathExpression is a representation of a compiled XPath query and any Namespace or variable references the query may require.
XPathFactory - Class in org.jdom2.xpath
XPathFactory allows JDOM users to configure which XPath implementation to use when evaluating XPath expressions.
XPathFactory() - Constructor for class org.jdom2.xpath.XPathFactory
 
XPathHelper - Class in org.jdom2.xpath
Provides a set of utility methods to generate XPath expressions to select a given node in a document.
XSLTransformer - Class in org.jdom2.transform
A convenience class to handle simple transformations.
XSLTransformer(String) - Constructor for class org.jdom2.transform.XSLTransformer
Creates a transformer for a given stylesheet system id.
XSLTransformer(InputStream) - Constructor for class org.jdom2.transform.XSLTransformer
This will create a new XSLTransformer by reading the stylesheet from the specified InputStream.
XSLTransformer(Reader) - Constructor for class org.jdom2.transform.XSLTransformer
This will create a new XSLTransformer by reading the stylesheet from the specified Reader.
XSLTransformer(File) - Constructor for class org.jdom2.transform.XSLTransformer
This will create a new XSLTransformer by reading the stylesheet from the specified File.
XSLTransformer(Document) - Constructor for class org.jdom2.transform.XSLTransformer
This will create a new XSLTransformer by reading the stylesheet from the specified Document.
XSLTransformException - Exception in org.jdom2.transform
Thrown when an XSL stylesheet fails to compile or an XSL transform fails
XSLTransformException() - Constructor for exception org.jdom2.transform.XSLTransformException
A new and default XSLTransformException
XSLTransformException(String) - Constructor for exception org.jdom2.transform.XSLTransformException
A new XSLTransformException with the specified message
XSLTransformException(String, Exception) - Constructor for exception org.jdom2.transform.XSLTransformException
A new XSLTransformException with the specified message and cause
A B C D E F G H I J L M N O P R S T U V W X 
Skip navigation links
JDOM
2.0.6.1

Copyright © 2021 Jason Hunter, Brett McLaughlin. All Rights Reserved.