| Enum Constant and Description |
|---|
BOLD |
DOCUMENT_TITLE |
ITALIC |
LINE_BREAK |
LIST_ENTRY |
LISTING |
LITERAL |
SPACE_ESCAPE |
TABLE_COLUMN_DELIMITER |
TABLE_ROW |
TITLE |
| 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 TABLE_COLUMN_DELIMITER
public static final Markdown TABLE_ROW
public static final Markdown LISTING
public static final Markdown TITLE
public static final Markdown DOCUMENT_TITLE
public static final Markdown LITERAL
public static final Markdown BOLD
public static final Markdown ITALIC
public static final Markdown LIST_ENTRY
public static final Markdown SPACE_ESCAPE
public static final Markdown LINE_BREAK
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