Package | Description |
---|---|
org.jdom2 |
Classes representing the components of an XML document.
|
org.jdom2.filter |
Classes to both filter and generically type-cast nodes of a document
based on type, name, value, or other aspects, and to boolean
AND/OR/NEGATE these rules.
|
org.jdom2.input |
Classes to build JDOM documents from various sources.
|
org.jdom2.located |
Extended JDOM Content Classes that contain location coordinates.
|
org.jdom2.output |
Classes to output JDOM documents to various destinations.
|
org.jdom2.output.support |
Classes used to implement output functionality that are not part of the
actual Output API, but rather part of the implementation.
|
Modifier and Type | Method and Description |
---|---|
CDATA |
UncheckedJDOMFactory.cdata(int line,
int col,
java.lang.String str) |
CDATA |
JDOMFactory.cdata(int line,
int col,
java.lang.String str)
This creates the CDATA with the supplied text.
|
CDATA |
DefaultJDOMFactory.cdata(int line,
int col,
java.lang.String text) |
CDATA |
SlimJDOMFactory.cdata(int line,
int col,
java.lang.String str) |
CDATA |
JDOMFactory.cdata(java.lang.String str)
This creates the CDATA with the supplied text.
|
CDATA |
DefaultJDOMFactory.cdata(java.lang.String str) |
CDATA |
CDATA.clone() |
CDATA |
CDATA.detach() |
protected CDATA |
CDATA.setParent(Parent parent) |
CDATA |
CDATA.setText(java.lang.String str)
This will set the value of this
CDATA node. |
Modifier and Type | Method and Description |
---|---|
static Filter<CDATA> |
Filters.cdata()
Return a Filter that matches any
CDATA data. |
Modifier and Type | Method and Description |
---|---|
CDATA |
DOMBuilder.build(org.w3c.dom.CDATASection cdata)
This will build a JDOM CDATA from an existing DOM CDATASection
|
Modifier and Type | Class and Description |
---|---|
class |
LocatedCDATA
An XML CDATA section.
|
Modifier and Type | Method and Description |
---|---|
CDATA |
LocatedJDOMFactory.cdata(int line,
int col,
java.lang.String text) |
Modifier and Type | Method and Description |
---|---|
org.w3c.dom.CDATASection |
DOMOutputter.output(CDATA cdata)
This converts the JDOM
CDATA parameter to a DOM CDATASection
Node, returning the DOM version. |
void |
XMLOutputter.output(CDATA cdata,
java.io.OutputStream out)
Print out a
node. |
void |
XMLOutputter.output(CDATA cdata,
java.io.Writer out)
Print out a
node. |
void |
StAXEventOutputter.output(CDATA cdata,
javax.xml.stream.util.XMLEventConsumer out)
Print out a
node. |
void |
StAXStreamOutputter.output(CDATA cdata,
javax.xml.stream.XMLStreamWriter out)
Print out a
node. |
org.w3c.dom.CDATASection |
DOMOutputter.output(org.w3c.dom.Document basedoc,
CDATA cdata)
This converts the JDOM
CDATA parameter to a DOM CDATASection
Node, returning the DOM version. |
java.lang.String |
XMLOutputter.outputString(CDATA cdata)
Return a string representing a
CDATA node. |
Modifier and Type | Method and Description |
---|---|
protected org.w3c.dom.CDATASection |
AbstractDOMOutputProcessor.printCDATA(FormatStack fstack,
org.w3c.dom.Document basedoc,
CDATA cdata)
This will handle printing of a
CDATA . |
protected void |
AbstractSAXOutputProcessor.printCDATA(SAXTarget out,
FormatStack fstack,
CDATA cdata)
This will handle printing of a
CDATA . |
protected void |
AbstractXMLOutputProcessor.printCDATA(java.io.Writer out,
FormatStack fstack,
CDATA cdata)
This will handle printing of a
CDATA . |
protected void |
AbstractStAXEventProcessor.printCDATA(javax.xml.stream.util.XMLEventConsumer out,
FormatStack fstack,
javax.xml.stream.XMLEventFactory eventfactory,
CDATA cdata)
This will handle printing of a
CDATA . |
protected void |
AbstractStAXStreamProcessor.printCDATA(javax.xml.stream.XMLStreamWriter out,
FormatStack fstack,
CDATA cdata)
This will handle printing of a
CDATA . |
org.w3c.dom.CDATASection |
DOMOutputProcessor.process(org.w3c.dom.Document basedoc,
Format format,
CDATA cdata)
This will convert the
using the given DOM
Document to create the resulting DOM CDATASection. |
org.w3c.dom.CDATASection |
AbstractDOMOutputProcessor.process(org.w3c.dom.Document basedoc,
Format format,
CDATA cdata) |
void |
SAXOutputProcessor.process(SAXTarget out,
Format format,
CDATA cdata)
Print out a
node. |
void |
AbstractSAXOutputProcessor.process(SAXTarget out,
Format format,
CDATA cdata) |
void |
XMLOutputProcessor.process(java.io.Writer out,
Format format,
CDATA cdata)
Print out a
node. |
void |
AbstractXMLOutputProcessor.process(java.io.Writer out,
Format format,
CDATA cdata) |
void |
AbstractStAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out,
Format format,
javax.xml.stream.XMLEventFactory eventfactory,
CDATA cdata) |
void |
StAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out,
Format format,
javax.xml.stream.XMLEventFactory eventfactpry,
CDATA cdata)
Print out a
node. |
void |
StAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out,
Format format,
CDATA cdata)
Print out a
node. |
void |
AbstractStAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out,
Format format,
CDATA cdata) |
Copyright © 2021 Jason Hunter, Brett McLaughlin. All Rights Reserved.