Uses of Class
com.atlassian.adf.model.node.Paragraph
-
Packages that use Paragraph Package Description com.atlassian.adf.model.node Nodes are elements within the Atlassian Document Format that represent presentation data for the document. -
-
Uses of Paragraph in com.atlassian.adf.model.node
Methods in com.atlassian.adf.model.node that return Paragraph Modifier and Type Method Description ParagraphParagraph. alignment(Alignment alignment)ParagraphParagraph. center()ParagraphParagraph. copy()ParagraphParagraph. end()ParagraphParagraph. indentation(int level)ParagraphParagraph. indentation(Indentation indentation)ParagraphParagraph. mark(ParagraphMark mark)static ParagraphParagraph. p()static ParagraphParagraph. p(InlineContent content)static ParagraphParagraph. p(InlineContent... content)static ParagraphParagraph. p(Iterable<? extends InlineContent> content)static ParagraphParagraph. p(String content)static ParagraphParagraph. p(String... content)Creates a new paragraph with the given content, all within that single paragraph.static ParagraphParagraph. p(Stream<? extends InlineContent> content)static ParagraphParagraph. paragraph()static ParagraphParagraph. paragraph(InlineContent content)static ParagraphParagraph. paragraph(InlineContent... content)static ParagraphParagraph. paragraph(Iterable<? extends InlineContent> content)static ParagraphParagraph. paragraph(String content)static ParagraphParagraph. paragraph(String... content)static ParagraphParagraph. paragraph(Stream<? extends InlineContent> content)ParagraphParagraph. text(String content)Convenience method for appending an ordinary text node to this paragraph.ParagraphParagraph. text(String... content)Convenience method for appending multiple ordinary text nodes to this paragraph.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.Methods in com.atlassian.adf.model.node that return types with arguments of type Paragraph Modifier and Type Method Description Class<Paragraph>Blockquote. contentClass()Methods in com.atlassian.adf.model.node with parameters of type Paragraph Modifier and Type Method Description static BlockquoteBlockquote. blockquote(Paragraph content)static BlockquoteBlockquote. blockquote(Paragraph... content)static BlockquoteBlockquote. bq(Paragraph content)Create aBlockquotenode containing a single paragraph as its content.static BlockquoteBlockquote. bq(Paragraph... content)Create aBlockquotenode containing the given paragraph as its content.protected voidBlockquote. validateContentNodeForAppend(Paragraph node)Method parameters in com.atlassian.adf.model.node with type arguments of type Paragraph Modifier and Type Method Description static BlockquoteBlockquote. blockquote(Iterable<? extends Paragraph> content)static BlockquoteBlockquote. blockquote(Stream<? extends Paragraph> content)static BlockquoteBlockquote. bq(Iterable<? extends Paragraph> content)Create aBlockquotenode containing the given paragraph as its content.static BlockquoteBlockquote. bq(Stream<? extends Paragraph> content)Create aBlockquotenode containing the given paragraph as its content.
-