JDOM
0.0.5-BETA

Uses of Class
org.jdom2.EntityRef

Packages that use EntityRef
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 EntityRef in org.jdom2
 

Methods in org.jdom2 that return EntityRef
 EntityRef EntityRef.clone()
           
 EntityRef EntityRef.detach()
           
 EntityRef UncheckedJDOMFactory.entityRef(int line, int col, java.lang.String name)
           
 EntityRef SlimJDOMFactory.entityRef(int line, int col, java.lang.String name)
           
 EntityRef JDOMFactory.entityRef(int line, int col, java.lang.String name)
          This will create a new EntityRef with the supplied name.
 EntityRef DefaultJDOMFactory.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 SlimJDOMFactory.entityRef(int line, int col, java.lang.String name, java.lang.String systemID)
           
 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 DefaultJDOMFactory.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 SlimJDOMFactory.entityRef(int line, int col, java.lang.String name, java.lang.String publicID, java.lang.String systemID)
           
 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 DefaultJDOMFactory.entityRef(int line, int col, java.lang.String name, java.lang.String publicID, java.lang.String systemID)
           
 EntityRef JDOMFactory.entityRef(java.lang.String name)
          This will create a new EntityRef with the supplied name.
 EntityRef DefaultJDOMFactory.entityRef(java.lang.String 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 DefaultJDOMFactory.entityRef(java.lang.String name, java.lang.String systemID)
           
 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 DefaultJDOMFactory.entityRef(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.
 

Uses of EntityRef in org.jdom2.filter
 

Methods in org.jdom2.filter that return types with arguments of type EntityRef
static Filter<EntityRef> Filters.entityref()
          Return a Filter that matches any EntityRef data.
 

Uses of EntityRef in org.jdom2.input
 

Methods in org.jdom2.input that return EntityRef
 EntityRef DOMBuilder.build(org.w3c.dom.EntityReference er)
          This will build a JDOM EntityRef from an existing DOM EntityReference
 

Uses of EntityRef in org.jdom2.located
 

Subclasses of EntityRef in org.jdom2.located
 class LocatedEntityRef
          An XML entity reference.
 

Methods in org.jdom2.located that return EntityRef
 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)
           
 

Uses of EntityRef in org.jdom2.output
 

Methods in org.jdom2.output with parameters of type EntityRef
 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.
 org.w3c.dom.EntityReference DOMOutputter.output(EntityRef entity)
          This converts the JDOM EntityRef parameter to a DOM EntityReference Node, returning the DOM version.
 void XMLOutputter.output(EntityRef entity, java.io.OutputStream out)
          Print out a EntityRef.
 void XMLOutputter.output(EntityRef entity, java.io.Writer out)
          Print out an EntityRef.
 void StAXEventOutputter.output(EntityRef entity, javax.xml.stream.util.XMLEventConsumer out)
          Print out an EntityRef.
 void StAXStreamOutputter.output(EntityRef entity, javax.xml.stream.XMLStreamWriter out)
          Print out an EntityRef.
 java.lang.String XMLOutputter.outputString(EntityRef entity)
          Return a string representing an EntityRef.
 

Uses of EntityRef in org.jdom2.output.support
 

Methods in org.jdom2.output.support with parameters of type EntityRef
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 AbstractXMLOutputProcessor.printEntityRef(java.io.Writer 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.
 org.w3c.dom.EntityReference DOMOutputProcessor.process(org.w3c.dom.Document basedoc, Format format, EntityRef entity)
          This will convert the EntityRef using the given DOM Document to create the resulting DOM EntityReference.
 org.w3c.dom.EntityReference AbstractDOMOutputProcessor.process(org.w3c.dom.Document basedoc, Format format, EntityRef entity)
           
 void SAXOutputProcessor.process(SAXTarget out, Format format, EntityRef entity)
          Print out a EntityRef.
 void AbstractSAXOutputProcessor.process(SAXTarget out, Format format, EntityRef entity)
           
 void XMLOutputProcessor.process(java.io.Writer out, Format format, EntityRef entity)
          Print out a EntityRef.
 void AbstractXMLOutputProcessor.process(java.io.Writer out, Format format, EntityRef entity)
           
 void StAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactory, EntityRef entity)
          Print out a EntityRef.
 void AbstractStAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactory, EntityRef entity)
           
 void StAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out, Format format, EntityRef entity)
          Print out a EntityRef.
 void AbstractStAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out, Format format, EntityRef entity)
           
 


JDOM
0.0.5-BETA

Copyright � 2012 Jason Hunter, Brett McLaughlin. All Rights Reserved.