Enum Class AsciiDocSymbols
- All Implemented Interfaces:
Serializable
,Comparable<AsciiDocSymbols>
,java.lang.constant.Constable
Enumeration of AsciiDoc markup symbols.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCross-reference anchor end.Cross-reference anchor start.Bold text.Cross-reference end.Cross-reference start.Example block.Hardbreaks attribute preserves line-breaks below its location in the document.Include-directive.Italic text.Single line-break.List continuation marker, for including complex markup in a list-item.Pre-formatted listing block.Literal block.Monospaced text.UNIX newline character.Pass-through block.Section title, level 1.Section title, level 2.Section title, level 3.Section title, level 4.Section title, level 5.Sidebar block.Start/end of table.Table-cell delimiter.Table-of-Contents directive.Unordered list item at level-1. -
Method Summary
Modifier and TypeMethodDescriptiontoString()
Returns the AsciiDocSymbols markup symbol associated with this item.static AsciiDocSymbols
Returns the enum constant of this class with the specified name.static AsciiDocSymbols[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ANCHOR_START
Cross-reference anchor start. -
ANCHOR_END
Cross-reference anchor end. -
BLOCK_TITLE
-
BOLD
Bold text. -
CROSS_REF_START
Cross-reference start. -
CROSS_REF_END
Cross-reference end. -
DOC_TITLE
-
HARDBREAKS
Hardbreaks attribute preserves line-breaks below its location in the document. -
EXAMPLE
Example block. -
HORIZONTAL_RULE
-
INCLUDE
Include-directive. -
ITALIC
Italic text. -
LINE_BREAK
Single line-break. -
LISTING
Pre-formatted listing block. -
LIST_CONTINUATION
List continuation marker, for including complex markup in a list-item. -
LITERAL
Literal block. -
MONO
Monospaced text. -
UNORDERED_LIST_1
Unordered list item at level-1.- See Also:
-
NEWLINE
UNIX newline character. -
PASSTHROUGH
Pass-through block. -
TABLE
Start/end of table. -
TABLE_CELL
Table-cell delimiter. -
TABLE_OF_CONTENTS
Table-of-Contents directive. -
SECTION_TITLE_1
Section title, level 1. -
SECTION_TITLE_2
Section title, level 2. -
SECTION_TITLE_3
Section title, level 3. -
SECTION_TITLE_4
Section title, level 4. -
SECTION_TITLE_5
Section title, level 5. -
SIDEBAR
Sidebar block.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
Returns the AsciiDocSymbols markup symbol associated with this item.- Overrides:
toString
in classEnum<AsciiDocSymbols>
- Returns:
- AsciiDocSymbols markup symbol
-