| 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 | Description |
|---|---|---|
EntityRef |
EntityRef.clone() |
|
EntityRef |
EntityRef.detach() |
|
EntityRef |
DefaultJDOMFactory.entityRef(int line,
int col,
java.lang.String name) |
|
EntityRef |
DefaultJDOMFactory.entityRef(int line,
int col,
java.lang.String name,
java.lang.String systemID) |
|
EntityRef |
DefaultJDOMFactory.entityRef(int line,
int col,
java.lang.String name,
java.lang.String publicID,
java.lang.String systemID) |
|
EntityRef |
DefaultJDOMFactory.entityRef(java.lang.String name) |
|
EntityRef |
DefaultJDOMFactory.entityRef(java.lang.String name,
java.lang.String systemID) |
|
EntityRef |
DefaultJDOMFactory.entityRef(java.lang.String name,
java.lang.String publicID,
java.lang.String systemID) |
|
EntityRef |
JDOMFactory.entityRef(int line,
int col,
java.lang.String name) |
This will create a new
EntityRef
with the supplied name. |
EntityRef |
JDOMFactory.entityRef(int line,
int col,
java.lang.String name,
java.lang.String systemID) |
This will create a new
EntityRef
with the supplied name and system ID. |
EntityRef |
JDOMFactory.entityRef(int line,
int col,
java.lang.String name,
java.lang.String publicID,
java.lang.String systemID) |
This will create a new
EntityRef
with the supplied name, public ID, and system ID. |
EntityRef |
JDOMFactory.entityRef(java.lang.String name) |
This will create a new
EntityRef
with the supplied name. |
EntityRef |
JDOMFactory.entityRef(java.lang.String name,
java.lang.String systemID) |
This will create a new
EntityRef
with the supplied name and system ID. |
EntityRef |
JDOMFactory.entityRef(java.lang.String name,
java.lang.String publicID,
java.lang.String systemID) |
This will create a new
EntityRef
with the supplied name, public ID, and system ID. |
EntityRef |
SlimJDOMFactory.entityRef(int line,
int col,
java.lang.String name) |
|
EntityRef |
SlimJDOMFactory.entityRef(int line,
int col,
java.lang.String name,
java.lang.String systemID) |
|
EntityRef |
SlimJDOMFactory.entityRef(int line,
int col,
java.lang.String name,
java.lang.String publicID,
java.lang.String systemID) |
|
EntityRef |
UncheckedJDOMFactory.entityRef(int line,
int col,
java.lang.String name) |
|
EntityRef |
UncheckedJDOMFactory.entityRef(int line,
int col,
java.lang.String name,
java.lang.String systemID) |
|
EntityRef |
UncheckedJDOMFactory.entityRef(int line,
int col,
java.lang.String name,
java.lang.String publicID,
java.lang.String systemID) |
|
EntityRef |
EntityRef.setName(java.lang.String name) |
This will set the name of this
EntityRef. |
protected EntityRef |
EntityRef.setParent(Parent parent) |
|
EntityRef |
EntityRef.setPublicID(java.lang.String publicID) |
This will set the public ID of this
EntityRef. |
EntityRef |
EntityRef.setSystemID(java.lang.String systemID) |
This will set the system ID of this
EntityRef. |
| Modifier and Type | Method | Description |
|---|---|---|
static Filter<EntityRef> |
Filters.entityref() |
Return a Filter that matches any
EntityRef data. |
| Modifier and Type | Method | Description |
|---|---|---|
EntityRef |
DOMBuilder.build(org.w3c.dom.EntityReference er) |
This will build a JDOM EntityRef from an existing DOM EntityReference
|
| Modifier and Type | Class | Description |
|---|---|---|
class |
LocatedEntityRef |
An XML entity reference.
|
| Modifier and Type | Method | Description |
|---|---|---|
EntityRef |
LocatedJDOMFactory.entityRef(int line,
int col,
java.lang.String name) |
|
EntityRef |
LocatedJDOMFactory.entityRef(int line,
int col,
java.lang.String name,
java.lang.String systemID) |
|
EntityRef |
LocatedJDOMFactory.entityRef(int line,
int col,
java.lang.String name,
java.lang.String publicID,
java.lang.String systemID) |
| Modifier and Type | Method | Description |
|---|---|---|
org.w3c.dom.EntityReference |
DOMOutputter.output(EntityRef entity) |
This converts the JDOM
EntityRef parameter to a DOM
EntityReference Node, returning the DOM version. |
org.w3c.dom.EntityReference |
DOMOutputter.output(org.w3c.dom.Document basedoc,
EntityRef entity) |
This converts the JDOM
EntityRef parameter to a DOM
EntityReference Node, returning the DOM version. |
void |
StAXEventOutputter.output(EntityRef entity,
javax.xml.stream.util.XMLEventConsumer out) |
Print out an
. |
void |
StAXStreamOutputter.output(EntityRef entity,
javax.xml.stream.XMLStreamWriter out) |
Print out an
. |
void |
XMLOutputter.output(EntityRef entity,
java.io.OutputStream out) |
Print out a
. |
void |
XMLOutputter.output(EntityRef entity,
java.io.Writer out) |
Print out an
. |
java.lang.String |
XMLOutputter.outputString(EntityRef entity) |
Return a string representing an
EntityRef. |
| Modifier and Type | Method | Description |
|---|---|---|
protected org.w3c.dom.EntityReference |
AbstractDOMOutputProcessor.printEntityRef(FormatStack fstack,
org.w3c.dom.Document basedoc,
EntityRef entity) |
This will handle printing of an
EntityRef. |
protected void |
AbstractSAXOutputProcessor.printEntityRef(SAXTarget out,
FormatStack fstack,
EntityRef entity) |
This will handle printing of an
EntityRef. |
protected void |
AbstractStAXEventProcessor.printEntityRef(javax.xml.stream.util.XMLEventConsumer out,
FormatStack fstack,
javax.xml.stream.XMLEventFactory eventfactory,
EntityRef entity) |
This will handle printing of an
EntityRef. |
protected void |
AbstractStAXStreamProcessor.printEntityRef(javax.xml.stream.XMLStreamWriter out,
FormatStack fstack,
EntityRef entity) |
This will handle printing of an
EntityRef. |
protected void |
AbstractXMLOutputProcessor.printEntityRef(java.io.Writer out,
FormatStack fstack,
EntityRef entity) |
This will handle printing of an
EntityRef. |
org.w3c.dom.EntityReference |
AbstractDOMOutputProcessor.process(org.w3c.dom.Document basedoc,
Format format,
EntityRef entity) |
|
void |
AbstractSAXOutputProcessor.process(SAXTarget out,
Format format,
EntityRef entity) |
|
void |
AbstractStAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out,
Format format,
javax.xml.stream.XMLEventFactory eventfactory,
EntityRef entity) |
|
void |
AbstractStAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out,
Format format,
EntityRef entity) |
|
void |
AbstractXMLOutputProcessor.process(java.io.Writer out,
Format format,
EntityRef entity) |
|
org.w3c.dom.EntityReference |
DOMOutputProcessor.process(org.w3c.dom.Document basedoc,
Format format,
EntityRef entity) |
This will convert the
using the given DOM
Document to create the resulting DOM EntityReference. |
void |
SAXOutputProcessor.process(SAXTarget out,
Format format,
EntityRef entity) |
Print out a
. |
void |
StAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out,
Format format,
javax.xml.stream.XMLEventFactory eventfactory,
EntityRef entity) |
Print out a
. |
void |
StAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out,
Format format,
EntityRef entity) |
Print out a
. |
void |
XMLOutputProcessor.process(java.io.Writer out,
Format format,
EntityRef entity) |
Print out a
. |
Copyright ? 2019 Jason Hunter, Brett McLaughlin. All Rights Reserved.