Uses of Interface
org.dom4j.CharacterData
Packages that use CharacterData
Package
Description
Defines the XML Document Object Model in Java interfaces together with some helper classes.
An implementation of the dom4j API which also supports the W3C object model.
Provides input and output via SAX and DOM together with writing dom4j objects to streams as XML text.
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.
A collection of utility classes for the dom4j API.
-
Uses of CharacterData in org.dom4j
Subinterfaces of CharacterData in org.dom4j -
Uses of CharacterData in org.dom4j.dom
Classes in org.dom4j.dom that implement CharacterDataModifier and TypeClassDescriptionclass
DOMCDATA
implements a CDATA Section which supports the W3C DOM API.class
DOMText
implements a Text node which supports the W3C DOM API.class
DOMText
implements a Text node which supports the W3C DOM API.Methods in org.dom4j.dom with parameters of type CharacterDataModifier and TypeMethodDescriptionstatic void
DOMNodeHelper.appendData
(CharacterData charData, String arg) static Text
DOMNodeHelper.asDOMText
(CharacterData text) static void
DOMNodeHelper.deleteData
(CharacterData charData, int offset, int count) static String
DOMNodeHelper.getData
(CharacterData charData) static int
DOMNodeHelper.getLength
(CharacterData charData) static void
DOMNodeHelper.insertData
(CharacterData data, int offset, String arg) static void
DOMNodeHelper.replaceData
(CharacterData charData, int offset, int count, String arg) static void
DOMNodeHelper.setData
(CharacterData charData, String data) static String
DOMNodeHelper.substringData
(CharacterData charData, int offset, int count) -
Uses of CharacterData in org.dom4j.io
Methods in org.dom4j.io that return CharacterDataModifier and TypeMethodDescriptionSTAXEventReader.createCharacterData
(Characters characters) Constructs a new DOM4J Text or CDATA object from the provided Characters event.STAXEventReader.readCharacters
(XMLEventReader reader) Constructs a DOM4J Text or CDATA section from the provided event stream. -
Uses of CharacterData in org.dom4j.tree
Classes in org.dom4j.tree that implement CharacterDataModifier and TypeClassDescriptionclass
AbstractCDATA
is an abstract base class for tree implementors to use for implementation inheritence.class
AbstractCharacterData
is an abstract base class for tree implementors to use for implementation inheritence.class
AbstractComment
is an abstract base class for tree implementors to use for implementation inheritence.class
AbstractText
is an abstract base class for tree implementors to use for implementation inheritence.class
DefaultCDATA
is the default CDATA implementation.class
DefaultComment
is the default Comment implementation.class
DefaultText
is the default Text implementation.class
FlyweightCDATA
is a Flyweight pattern implementation of a singly linked, read-only XML CDATA.class
FlyweightComment
is a Flyweight pattern implementation of a singly linked, read-only XML Comment.class
FlyweightText
is a Flyweight pattern implementation of a singly linked, read-only XML Text. -
Uses of CharacterData in org.dom4j.util
Methods in org.dom4j.util with parameters of type CharacterData