| Enum Constant and Description |
|---|
ANCHOR_END |
ANCHOR_START |
BOLD |
CROSS_REFERENCE_END |
CROSS_REFERENCE_START |
DOCUMENT_TITLE |
ITALIC |
LINE_BREAK |
LIST_ENTRY |
LITERAL |
SPACE_ESCAPE |
TABLE |
TABLE_COLUMN_DELIMITER |
TITLE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static AsciiDoc |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AsciiDoc[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsciiDoc TABLE
public static final AsciiDoc TABLE_COLUMN_DELIMITER
public static final AsciiDoc TITLE
public static final AsciiDoc DOCUMENT_TITLE
public static final AsciiDoc LITERAL
public static final AsciiDoc BOLD
public static final AsciiDoc ITALIC
public static final AsciiDoc LIST_ENTRY
public static final AsciiDoc CROSS_REFERENCE_START
public static final AsciiDoc CROSS_REFERENCE_END
public static final AsciiDoc ANCHOR_START
public static final AsciiDoc ANCHOR_END
public static final AsciiDoc SPACE_ESCAPE
public static final AsciiDoc LINE_BREAK
public static AsciiDoc[] values()
for (AsciiDoc c : AsciiDoc.values()) System.out.println(c);
public static AsciiDoc 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