Uses of Class
org.jdom2.CDATA
-
Packages that use CDATA 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. -
-
Uses of CDATA in org.jdom2
Methods in org.jdom2 that return CDATA Modifier and Type Method Description CDATA
DefaultJDOMFactory. cdata(int line, int col, java.lang.String text)
CDATA
DefaultJDOMFactory. cdata(java.lang.String str)
CDATA
JDOMFactory. cdata(int line, int col, java.lang.String str)
This creates the CDATA with the supplied text.CDATA
JDOMFactory. cdata(java.lang.String str)
This creates the CDATA with the supplied text.CDATA
SlimJDOMFactory. cdata(int line, int col, java.lang.String str)
CDATA
UncheckedJDOMFactory. cdata(int line, int col, 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 thisCDATA
node. -
Uses of CDATA in org.jdom2.filter
Methods in org.jdom2.filter that return types with arguments of type CDATA Modifier and Type Method Description static Filter<CDATA>
Filters. cdata()
Return a Filter that matches anyCDATA
data. -
Uses of CDATA in org.jdom2.input
Methods in org.jdom2.input that return CDATA Modifier and Type Method Description CDATA
DOMBuilder. build(org.w3c.dom.CDATASection cdata)
This will build a JDOM CDATA from an existing DOM CDATASection -
Uses of CDATA in org.jdom2.located
Subclasses of CDATA in org.jdom2.located Modifier and Type Class Description class
LocatedCDATA
An XML CDATA section.Methods in org.jdom2.located that return CDATA Modifier and Type Method Description CDATA
LocatedJDOMFactory. cdata(int line, int col, java.lang.String text)
-
Uses of CDATA in org.jdom2.output
Methods in org.jdom2.output with parameters of type CDATA Modifier and Type Method Description org.w3c.dom.CDATASection
DOMOutputter. output(CDATA cdata)
This converts the JDOMCDATA
parameter to a DOM CDATASection Node, returning the DOM version.org.w3c.dom.CDATASection
DOMOutputter. output(org.w3c.dom.Document basedoc, CDATA cdata)
This converts the JDOMCDATA
parameter to a DOM CDATASection Node, returning the DOM version.void
StAXEventOutputter. output(CDATA cdata, javax.xml.stream.util.XMLEventConsumer out)
Print out a
node.CDATA
void
StAXStreamOutputter. output(CDATA cdata, javax.xml.stream.XMLStreamWriter out)
Print out a
node.CDATA
void
XMLOutputter. output(CDATA cdata, java.io.OutputStream out)
Print out a
node.CDATA
void
XMLOutputter. output(CDATA cdata, java.io.Writer out)
Print out a
node.CDATA
java.lang.String
XMLOutputter. outputString(CDATA cdata)
Return a string representing aCDATA
node. -
Uses of CDATA in org.jdom2.output.support
Methods in org.jdom2.output.support with parameters of type CDATA Modifier and Type Method Description protected org.w3c.dom.CDATASection
AbstractDOMOutputProcessor. printCDATA(FormatStack fstack, org.w3c.dom.Document basedoc, CDATA cdata)
This will handle printing of aCDATA
.protected void
AbstractSAXOutputProcessor. printCDATA(SAXTarget out, FormatStack fstack, CDATA cdata)
This will handle printing of aCDATA
.protected void
AbstractStAXEventProcessor. printCDATA(javax.xml.stream.util.XMLEventConsumer out, FormatStack fstack, javax.xml.stream.XMLEventFactory eventfactory, CDATA cdata)
This will handle printing of aCDATA
.protected void
AbstractStAXStreamProcessor. printCDATA(javax.xml.stream.XMLStreamWriter out, FormatStack fstack, CDATA cdata)
This will handle printing of aCDATA
.protected void
AbstractXMLOutputProcessor. printCDATA(java.io.Writer out, FormatStack fstack, CDATA cdata)
This will handle printing of aCDATA
.org.w3c.dom.CDATASection
AbstractDOMOutputProcessor. process(org.w3c.dom.Document basedoc, Format format, CDATA cdata)
void
AbstractSAXOutputProcessor. process(SAXTarget out, Format format, CDATA cdata)
void
AbstractStAXEventProcessor. process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactory, CDATA cdata)
void
AbstractStAXStreamProcessor. process(javax.xml.stream.XMLStreamWriter out, Format format, CDATA cdata)
void
AbstractXMLOutputProcessor. process(java.io.Writer out, Format format, CDATA 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.CDATA
void
SAXOutputProcessor. process(SAXTarget out, Format format, CDATA cdata)
Print out a
node.CDATA
void
StAXEventProcessor. process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactpry, CDATA cdata)
Print out a
node.CDATA
void
StAXStreamProcessor. process(javax.xml.stream.XMLStreamWriter out, Format format, CDATA cdata)
Print out a
node.CDATA
void
XMLOutputProcessor. process(java.io.Writer out, Format format, CDATA cdata)
Print out a
node.CDATA
-