Uses of Interface
org.dom4j.CharacterData
-
Packages that use CharacterData 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 CharacterData in org.dom4j
Subinterfaces of CharacterData in org.dom4j Modifier and Type Interface Description interfaceCDATACDATAdefines an XML CDATA section.interfaceCommentCommentdefines the behavior of an XML comment.interfaceTextTextdefines an XML Text node. -
Uses of CharacterData in org.dom4j.dom
Classes in org.dom4j.dom that implement CharacterData Modifier and Type Class Description classDOMCDATADOMCDATAimplements a CDATA Section which supports the W3C DOM API.classDOMCommentDOMTextimplements a Text node which supports the W3C DOM API.classDOMTextDOMTextimplements a Text node which supports the W3C DOM API.Methods in org.dom4j.dom with parameters of type CharacterData Modifier and Type Method Description static voidDOMNodeHelper. appendData(CharacterData charData, String arg)static TextDOMNodeHelper. asDOMText(CharacterData text)static voidDOMNodeHelper. deleteData(CharacterData charData, int offset, int count)static StringDOMNodeHelper. getData(CharacterData charData)static intDOMNodeHelper. getLength(CharacterData charData)static voidDOMNodeHelper. insertData(CharacterData data, int offset, String arg)static voidDOMNodeHelper. replaceData(CharacterData charData, int offset, int count, String arg)static voidDOMNodeHelper. setData(CharacterData charData, String data)static StringDOMNodeHelper. substringData(CharacterData charData, int offset, int count) -
Uses of CharacterData in org.dom4j.io
Methods in org.dom4j.io that return CharacterData Modifier and Type Method Description CharacterDataSTAXEventReader. createCharacterData(Characters characters)Constructs a new DOM4J Text or CDATA object from the provided Characters event.CharacterDataSTAXEventReader. 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 CharacterData Modifier and Type Class Description classAbstractCDATAAbstractCDATAis an abstract base class for tree implementors to use for implementation inheritence.classAbstractCharacterDataAbstractCharacterDatais an abstract base class for tree implementors to use for implementation inheritence.classAbstractCommentAbstractCommentis an abstract base class for tree implementors to use for implementation inheritence.classAbstractTextAbstractTextis an abstract base class for tree implementors to use for implementation inheritence.classDefaultCDATADefaultCDATAis the default CDATA implementation.classDefaultCommentDefaultCommentis the default Comment implementation.classDefaultTextDefaultTextis the default Text implementation.classFlyweightCDATAFlyweightCDATAis a Flyweight pattern implementation of a singly linked, read-only XML CDATA.classFlyweightCommentFlyweightCommentis a Flyweight pattern implementation of a singly linked, read-only XML Comment.classFlyweightTextFlyweightTextis 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 Modifier and Type Method Description intNodeComparator. compare(CharacterData t1, CharacterData t2)
-