static Blockquote |
Blockquote.blockquote() |
|
static Blockquote |
Blockquote.blockquote(Paragraph content) |
|
static Blockquote |
Blockquote.blockquote(Paragraph... content) |
|
static Blockquote |
Blockquote.blockquote(Iterable<? extends Paragraph> content) |
|
static Blockquote |
Blockquote.blockquote(String content) |
|
static Blockquote |
Blockquote.blockquote(String... content) |
|
static Blockquote |
Blockquote.blockquote(Stream<? extends Paragraph> content) |
|
static Blockquote |
Blockquote.bq() |
Create an empty Blockquote node.
|
static Blockquote |
Blockquote.bq(Paragraph content) |
Create a Blockquote node containing a single paragraph as its content.
|
static Blockquote |
Blockquote.bq(Paragraph... content) |
Create a Blockquote node containing the given paragraph as its content.
|
static Blockquote |
Blockquote.bq(Iterable<? extends Paragraph> content) |
Create a Blockquote node containing the given paragraph as its content.
|
static Blockquote |
Blockquote.bq(String content) |
Create a Blockquote node containing a single paragraph with the given text as its content.
|
static Blockquote |
Blockquote.bq(String... content) |
Create a Blockquote node containing a single paragraph with the given text as its content.
|
static Blockquote |
Blockquote.bq(Stream<? extends Paragraph> content) |
Create a Blockquote node containing the given paragraph as its content.
|
Blockquote |
Blockquote.copy() |
|