Uses of Interface
org.dom4j.Entity
-
Packages that use Entity Package Description org.dom4j Defines the XML Document Object Model in Java interfaces together with some helper classes.org.dom4j.dom An implementation of the dom4j API which also supports the W3C object model.org.dom4j.io Provides input and output via SAX and DOM together with writing dom4j objects to streams as XML text.org.dom4j.tree Contains the default implementations of the dom4j Document Object Model together with some helpful base classes for those wishing to implement their own document object model.org.dom4j.util A collection of utility classes for the dom4j API. -
-
Uses of Entity in org.dom4j
Methods in org.dom4j that return Entity Modifier and Type Method Description EntityDocumentFactory. createEntity(String name, String text)static EntityDocumentHelper. createEntity(String name, String text)Methods in org.dom4j with parameters of type Entity Modifier and Type Method Description voidElement. add(Entity entity)Adds the givenEntityto this element.booleanElement. remove(Entity entity)Removes the givenEntityif the node is an immediate child of this element.voidVisitor. visit(Entity node)Visits the givenEntityvoidVisitorSupport. visit(Entity node) -
Uses of Entity in org.dom4j.dom
Classes in org.dom4j.dom that implement Entity Modifier and Type Class Description classDOMEntityReferenceDOMEntityimplements a Entity node which supports the W3C DOM API.Methods in org.dom4j.dom that return Entity Modifier and Type Method Description EntityDOMDocumentFactory. createEntity(String name)EntityDOMDocumentFactory. createEntity(String name, String text) -
Uses of Entity in org.dom4j.io
Methods in org.dom4j.io that return Entity Modifier and Type Method Description EntitySTAXEventReader. createEntity(EntityReference entityRef)Constructs a new DOM4J Entity from the provided StAX EntityReference event.EntitySTAXEventReader. readEntityReference(XMLEventReader reader)Constructs a DOM4J Entity from the provided event stream.Methods in org.dom4j.io with parameters of type Entity Modifier and Type Method Description protected voidDOMWriter. appendDOMTree(Document domDocument, Node domCurrent, Entity entity)voidSAXWriter. write(Entity entity)Generates SAX events for the given EntityvoidXMLWriter. write(Entity entity)Writes the givenEntity.protected voidHTMLWriter. writeEntity(Entity entity)voidSTAXEventWriter. writeEntity(Entity entity)Writes a DOM4JEntityto the stream.protected voidXMLWriter. writeEntity(Entity entity) -
Uses of Entity in org.dom4j.tree
Classes in org.dom4j.tree that implement Entity Modifier and Type Class Description classAbstractEntityAbstractEntityis an abstract base class for tree implementors to use for implementation inheritence.classDefaultEntityDefaultEntityis the default Entity implementation.classFlyweightEntityFlyweightEntityis a Flyweight pattern implementation of a singly linked, read-only XML entity.Methods in org.dom4j.tree with parameters of type Entity Modifier and Type Method Description voidAbstractElement. add(Entity entity)booleanAbstractElement. remove(Entity entity) -
Uses of Entity in org.dom4j.util
Methods in org.dom4j.util that return Entity Modifier and Type Method Description EntityProxyDocumentFactory. createEntity(String name, String text)Methods in org.dom4j.util with parameters of type Entity Modifier and Type Method Description intNodeComparator. compare(Entity n1, Entity n2)
-