Enum Class AsciiDocTableColumnStyles
java.lang.Object
java.lang.Enum<AsciiDocTableColumnStyles>
org.forgerock.api.markup.asciidoc.AsciiDocTableColumnStyles
- All Implemented Interfaces:
Serializable
,Comparable<AsciiDocTableColumnStyles>
,java.lang.constant.Constable
AsciiDoc table column-styles.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionBlock-level elements (paragraphs, delimited blocks and block macros) AsciiDoc content.No additional styles (default).Italic text.Header styles applied.Literal block style.Monospaced font.Bold text.Cell treated like it was a verse block. -
Method Summary
Modifier and TypeMethodDescriptiontoString()
Returns the character associated with the table column-style.static AsciiDocTableColumnStyles
Returns the enum constant of this class with the specified name.static AsciiDocTableColumnStyles[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ASCII_DOC_CELL
Block-level elements (paragraphs, delimited blocks and block macros) AsciiDoc content. -
EMPHASIS_CELL
Italic text. -
HEADER_CELL
Header styles applied. -
LITERAL_CELL
Literal block style. -
MONO_CELL
Monospaced font. -
DEFAULT_CELL
No additional styles (default). -
STRONG_CELL
Bold text. -
VERSE_CELL
Cell treated like it was a verse 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 character associated with the table column-style.- Overrides:
toString
in classEnum<AsciiDocTableColumnStyles>
- Returns:
- column-style character
-