Uses of Interface
com.atlassian.adf.model.mark.type.TextMark
-
Packages that use TextMark Package Description com.atlassian.adf.model.mark Marks are special document elements that are used to decoratetextnodes.com.atlassian.adf.model.mark.type Marker interfaces that help classify mark types by how they may be used.com.atlassian.adf.model.mark.unsupported Special marks that wrap opaque mark values that have an unrecognized type.com.atlassian.adf.model.node Nodes are elements within the Atlassian Document Format that represent presentation data for the document. -
-
Uses of TextMark in com.atlassian.adf.model.mark
Classes in com.atlassian.adf.model.mark that implement TextMark Modifier and Type Class Description classAnnotationThe annotation mark shows the presence of an annotation or comment on a node.classCodeThecodemark sets code styling.classEmTheemmark sets italic (emphasis) styling.classLinkThelinkmark sets a hyperlink.classStrikeTheemmark sets strike-through styling.classStrongTheemmark sets strong styling.classSubSupThesubsupmark sets superscript or subscript styling.classTextColorThetextColormark adds<span style="color: #ff0000;">...</span>color styling.classUnderlineTheunderlinemark sets underline styling.Method parameters in com.atlassian.adf.model.mark with type arguments of type TextMark Modifier and Type Method Description static voidMarkParserSupport. parseTextMarks(Map<String,?> map, Marked<?,TextMark> node) -
Uses of TextMark in com.atlassian.adf.model.mark.type
Subinterfaces of TextMark in com.atlassian.adf.model.mark.type Modifier and Type Interface Description interfaceCodeTextMarkText marks that are only usable in code sections and can only be used together with other marks that also implement this marker interface.interfaceFormattedTextMarkText marks that are only usable in formatted-text sections and can only be used together with other marks that also implement this marker interface.Methods in com.atlassian.adf.model.mark.type that return TextMark Modifier and Type Method Description TextMarkTextMark. copy() -
Uses of TextMark in com.atlassian.adf.model.mark.unsupported
Classes in com.atlassian.adf.model.mark.unsupported that implement TextMark Modifier and Type Class Description classUnsupportedTextMarkRepresents some unknown mark that was used on atextnode.Fields in com.atlassian.adf.model.mark.unsupported with type parameters of type TextMark Modifier and Type Field Description static Factory<TextMark>UnsupportedTextMark. FACTORY -
Uses of TextMark in com.atlassian.adf.model.node
Methods in com.atlassian.adf.model.node that return types with arguments of type TextMark Modifier and Type Method Description Class<TextMark>Text. markClass()protected Factory<TextMark>Text. unsupportedMarkFactory()Methods in com.atlassian.adf.model.node with parameters of type TextMark Modifier and Type Method Description TextText. mark(TextMark mark)booleanText. markIfAllowed(TextMark mark)Adds the given mark to the node if it is permitted.ParagraphParagraph. text(String content, TextMark mark)Convenience method for appending an text node with a single mark to this paragraph.ParagraphParagraph. text(String content, TextMark... marks)Convenience method for appending an text node with multiple marks to this paragraph.static TextText. text(String text, TextMark... marks)Create a new text node that also has the specified marks.Method parameters in com.atlassian.adf.model.node with type arguments of type TextMark Modifier and Type Method Description static TextText. text(String text, Iterable<? extends TextMark> marks)static TextText. text(String text, Stream<? extends TextMark> marks)
-