Stay organized with collections Save and categorize content based on your preferences.
TextA representation of an XML Text
node.
append(text)
Appends the given text to any content that already exists in the node.
Parameters Name Type Descriptiontext
String
the text to append to the node Return
Text
— the Text
node, for chaining
detach()
Detaches the node from its parent Element
node. If the node does not have a parent, this method has no effect.
Content
— the detached node
getParentElement()
Gets the node's parent Element
node. If the node does not have a parent, this method returns null
.
Element
— the parent Element
node
getText()
Gets the text value of the Text
node.
String
— the text value of the Text
node
getValue()
Gets the text value of all nodes that are direct or indirect children of the node, in the order they appear in the document.
ReturnString
— the text value of all nodes that are direct or indirect children of the node
setText(text)
Sets the text value of the Text
node.
text
String
the text value to set Return
Text
— the Text
node, for chaining
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-12-02 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-02 UTC."],[[["The `Text` object represents a text node within an XML document and provides methods for manipulating its content."],["You can use methods like `append()`, `setText()`, and `getText()` to modify and retrieve the text content of the node."],["`detach()` removes the node from its parent element, while `getParentElement()` allows access to the parent element."],["`getValue()` retrieves the text value of all child nodes, offering a way to access nested content within the text node."]]],["The `Text` node represents XML text content. Key actions include: appending text to the node via `append(text)`, detaching the node from its parent using `detach()`, and retrieving the parent element with `getParentElement()`. Text content can be obtained using `getText()` for the node's text or `getValue()` for text of child nodes. Finally, `setText(text)` sets the text value of the node. These methods allow manipulation and reading of text in an XML structure.\n"]]
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4