Uses of Class
eu.maveniverse.domtrip.Text
-
Packages that use Text Package Description eu.maveniverse.domtrip DomTrip - A lossless XML processing library for Java. -
-
Uses of Text in eu.maveniverse.domtrip
Methods in eu.maveniverse.domtrip that return Text Modifier and Type Method Description TextText. asCData()Converts this text node to a CDATA section.TextEditor.EditorTextBuilder. build()Builds and adds the text node to the document.TextText. cdata(boolean cData)static TextText. cdata(java.lang.String content)Creates a CDATA text node with the specified content.TextText. clone()Deprecated.Usecopy()instead.TextText. content(java.lang.String content)TextText. contentPreservingWhitespace(java.lang.String newContent)Sets new content while preserving the existing whitespace pattern.TextText. copy()Creates a deep copy of this node.static TextText. of(java.lang.String content)Creates a text node with the specified content.static TextText. of(java.lang.String content, boolean isCData)Creates a text node with the specified content and CDATA flag.TextText. parent(ContainerNode parent)Sets the parent container node of this node.TextText. precedingWhitespace(java.lang.String whitespace)Sets the whitespace that precedes this node.TextText. preserveWhitespace(boolean preserveWhitespace)TextText. rawContent(java.lang.String rawContent)Methods in eu.maveniverse.domtrip that return types with arguments of type Text Modifier and Type Method Description java.util.Optional<Text>ContainerNode. findTextNode()java.util.Optional<Text>Element. textChild()Finds the first text child node.Methods in eu.maveniverse.domtrip with parameters of type Text Modifier and Type Method Description default DomTripVisitor.ActionDomTripVisitor. visitText(Text text)Called for text nodes during traversal.Method parameters in eu.maveniverse.domtrip with type arguments of type Text Modifier and Type Method Description TreeWalkerTreeWalker. onText(java.util.function.Function<Text,DomTripVisitor.Action> handler)Sets the callback invoked for each text node.
-