| Enum Constant and Description |
|---|
BOLD |
DOCUMENT_TITLE |
HARDBREAKS |
ITALIC |
LIST_ENTRY |
LISTING |
SECTION_TITLE_LEVEL1 |
SECTION_TITLE_LEVEL2 |
SECTION_TITLE_LEVEL3 |
SECTION_TITLE_LEVEL4 |
TABLE_COLUMN_DELIMITER |
TABLE_ROW |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Markdown |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Markdown[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Markdown HARDBREAKS
public static final Markdown TABLE_COLUMN_DELIMITER
public static final Markdown TABLE_ROW
public static final Markdown LISTING
public static final Markdown DOCUMENT_TITLE
public static final Markdown SECTION_TITLE_LEVEL1
public static final Markdown SECTION_TITLE_LEVEL2
public static final Markdown SECTION_TITLE_LEVEL3
public static final Markdown SECTION_TITLE_LEVEL4
public static final Markdown BOLD
public static final Markdown ITALIC
public static final Markdown LIST_ENTRY
public static Markdown[] values()
for (Markdown c : Markdown.values()) System.out.println(c);
public static Markdown valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null