public static enum MarkdownParagraph.TextType extends Enum<MarkdownParagraph.TextType>
| Enum Constant and Description |
|---|
BREAK |
MARKDOWN_BREAK |
MARKDOWN_START_LINE |
SPACE |
WORD |
| Modifier and Type | Method and Description |
|---|---|
static MarkdownParagraph.TextType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MarkdownParagraph.TextType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarkdownParagraph.TextType WORD
public static final MarkdownParagraph.TextType SPACE
public static final MarkdownParagraph.TextType BREAK
public static final MarkdownParagraph.TextType MARKDOWN_BREAK
public static final MarkdownParagraph.TextType MARKDOWN_START_LINE
public static MarkdownParagraph.TextType[] values()
for (MarkdownParagraph.TextType c : MarkdownParagraph.TextType.values()) System.out.println(c);
public static MarkdownParagraph.TextType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.