| Enum Constant and Description |
|---|
BOLD |
CROSS_REFERENCE_END |
CROSS_REFERENCE_START |
DOCUMENT_TITLE |
HARDBREAKS |
ITALIC |
LABELED |
LIST_ENTRY |
LISTING |
SECTION_TITLE_LEVEL1 |
SECTION_TITLE_LEVEL2 |
SECTION_TITLE_LEVEL3 |
SECTION_TITLE_LEVEL4 |
TABLE |
TABLE_COLUMN_DELIMITER |
| 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 LABELED
public static final AsciiDoc TABLE
public static final AsciiDoc TABLE_COLUMN_DELIMITER
public static final AsciiDoc LISTING
public static final AsciiDoc HARDBREAKS
public static final AsciiDoc DOCUMENT_TITLE
public static final AsciiDoc SECTION_TITLE_LEVEL1
public static final AsciiDoc SECTION_TITLE_LEVEL2
public static final AsciiDoc SECTION_TITLE_LEVEL3
public static final AsciiDoc SECTION_TITLE_LEVEL4
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 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