Uses of Class
com.atlassian.adf.model.node.Text
-
Packages that use Text Package Description com.atlassian.adf.model.mark Marks are special document elements that are used to decoratetextnodes.com.atlassian.adf.model.node Nodes are elements within the Atlassian Document Format that represent presentation data for the document. -
-
Uses of Text in com.atlassian.adf.model.mark
Methods in com.atlassian.adf.model.mark that return Text Modifier and Type Method Description static TextCode. code(Text text)Convenience method for applying acodemark to an existingtextnode.static TextCode. code(String text)Convenience method for constructing atextnode with acodemark.static TextEm. em(Text text)Convenience method for applying anemmark to an existingtextnode.static TextEm. em(String text)Convenience method for constructing atextnode with anemmark.static TextStrike. strike(Text text)Convenience method for applying astrikemark to an existingtextnode.static TextStrike. strike(String text)Convenience method for constructing atextnode with astrikemark.static TextStrong. strong(Text text)Convenience method for applying astrongmark to an existingtextnode.static TextStrong. strong(String text)Convenience method for constructing atextnode with astrongmark.static TextSubSup. sub(Text text)Convenience method for applying asubmark to an existingtextnode.static TextSubSup. sub(String text)Convenience method for constructing atextnode with asubmark.static TextSubSup. sup(Text text)Convenience method for applying asupmark to an existingtextnode.static TextSubSup. sup(String text)Convenience method for constructing atextnode with asupmark.static TextUnderline. underline(Text text)Convenience method for applying anunderlinemark to an existingtextnode.static TextUnderline. underline(String text)Convenience method for constructing atextnode with anunderlinemark.Methods in com.atlassian.adf.model.mark with parameters of type Text Modifier and Type Method Description static TextCode. code(Text text)Convenience method for applying acodemark to an existingtextnode.static TextEm. em(Text text)Convenience method for applying anemmark to an existingtextnode.static TextStrike. strike(Text text)Convenience method for applying astrikemark to an existingtextnode.static TextStrong. strong(Text text)Convenience method for applying astrongmark to an existingtextnode.static TextSubSup. sub(Text text)Convenience method for applying asubmark to an existingtextnode.static TextSubSup. sup(Text text)Convenience method for applying asupmark to an existingtextnode.static TextUnderline. underline(Text text)Convenience method for applying anunderlinemark to an existingtextnode. -
Uses of Text in com.atlassian.adf.model.node
Methods in com.atlassian.adf.model.node that return Text Modifier and Type Method Description TextText. append(String text)TextText. code()Add aCodemark to this text.TextText. copy()TextText. em()Add anEmmark to this text.TextText. link(String url)Add aLinkmark to this text using the given target URL.TextText. link(URL url)Add aLinkmark to this text using the given target URL.TextText. lowercase()This converts the text string to lowercase usingLocale#ROOTsemantics.TextText. mark(TextMark mark)TextText. set(String text)TextText. strike()Add aStrikemark to this text.TextText. strong()Add aStrongmark to this text.TextText. sub()Add asubmark to this text.TextText. sup()Add asupmark to this text.static TextText. text(String text)Create a new text node for the given input string without any marks.static TextText. text(String text, TextMark... marks)Create a new text node that also has the specified marks.static TextText. text(String text, Iterable<? extends TextMark> marks)static TextText. text(String text, Stream<? extends TextMark> marks)TextText. textColor(Colors.Named color)Add aTextColormark to this text.TextText. textColor(Color color)Add aTextColormark to this text.TextText. textColor(String color)Add aTextColormark to this text.TextText. underline()Add anUnderlinemark to this text.TextText. uppercase()This converts the text string to uppercase usingLocale#ROOTsemantics.Methods in com.atlassian.adf.model.node that return types with arguments of type Text Modifier and Type Method Description Class<Text>CodeBlock. contentClass()static Stream<Text>Text. text(Iterable<? extends String> text)Create a stream of text nodes for the given input strings without any marks.static Stream<Text>Text. text(String... text)Create a stream of text nodes for the given input strings without any marks.static Stream<Text>Text. text(Stream<? extends String> text)Create a stream of text nodes for the given input strings without any marks.Methods in com.atlassian.adf.model.node with parameters of type Text Modifier and Type Method Description static CodeBlockCodeBlock. codeBlock(Text content)static CodeBlockCodeBlock. codeBlock(Text... content)booleanText. hasSameMarks(Text other)protected booleanText. markedNodeEquals(Text other)static CodeBlockCodeBlock. pre(Text content)static CodeBlockCodeBlock. pre(Text... content)protected voidCodeBlock. validateContentNodeForAppend(Text node)Method parameters in com.atlassian.adf.model.node with type arguments of type Text Modifier and Type Method Description static CodeBlockCodeBlock. codeBlock(Iterable<? extends Text> content)static CodeBlockCodeBlock. codeBlock(Stream<? extends Text> content)static CodeBlockCodeBlock. pre(Iterable<? extends Text> content)static CodeBlockCodeBlock. pre(Stream<? extends Text> content)
-