Inheritance diagram for org::jdom::Text:
Public Member Functions | |
Text (String str) | |
String | getText () |
String | getTextTrim () |
String | getTextNormalize () |
Text | setText (String str) |
void | append (String str) |
void | append (Text text) |
String | getValue () |
String | toString () |
Object | clone () |
Static Public Member Functions | |
String | normalizeString (String str) |
Protected Member Functions | |
Text () | |
Protected Attributes | |
String | value |
Static Package Attributes | |
final String | EMPTY_STRING = "" |
Jason Hunter
Bradley S. Huffman
|
This is the protected, no-args constructor standard in all JDOM classes. It allows subclassers to get a raw instance with no initialization. |
|
This constructor creates a new
|
|
This will append the content of another
|
|
This will append character content to whatever content already exists within this
Reimplemented in org::jdom::CDATA. |
|
This will return a clone of this
Reimplemented from org::jdom::Content. |
|
This returns the value of this
|
|
This returns the textual content with all surrounding whitespace removed and internal whitespace normalized to a single space. If only whitespace exists, the empty string is returned.
|
|
This returns the textual content with all surrounding whitespace removed. If only whitespace exists, the empty string is returned.
|
|
Returns the XPath 1.0 string value of this element, which is the text itself.
Implements org::jdom::Content. |
|
This returns a new string with all surrounding whitespace removed and internal whitespace normalized to a single space. If only whitespace exists, the empty string is returned. Per XML 1.0 Production 3 whitespace includes: #x20, #x9, #xD, #xA
|
|
This will set the value of this
Reimplemented in org::jdom::CDATA. |
|
This returns a
Reimplemented in org::jdom::CDATA. |
|
The actual character content |