public enum AsciiDocTableColumnStyles extends Enum<AsciiDocTableColumnStyles>
| Enum Constant and Description |
|---|
ASCII_DOC_CELL
Block-level elements (paragraphs, delimited blocks and block macros) AsciiDoc content.
|
DEFAULT_CELL
No additional styles (default).
|
EMPHASIS_CELL
Italic text.
|
HEADER_CELL
Header styles applied.
|
LITERAL_CELL
Literal block style.
|
MONO_CELL
Monospaced font.
|
STRONG_CELL
Bold text.
|
VERSE_CELL
Cell treated like it was a verse block.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Returns the character associated with the table column-style.
|
static AsciiDocTableColumnStyles |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AsciiDocTableColumnStyles[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsciiDocTableColumnStyles ASCII_DOC_CELL
public static final AsciiDocTableColumnStyles EMPHASIS_CELL
public static final AsciiDocTableColumnStyles HEADER_CELL
public static final AsciiDocTableColumnStyles LITERAL_CELL
public static final AsciiDocTableColumnStyles MONO_CELL
public static final AsciiDocTableColumnStyles DEFAULT_CELL
public static final AsciiDocTableColumnStyles STRONG_CELL
public static final AsciiDocTableColumnStyles VERSE_CELL
public static AsciiDocTableColumnStyles[] values()
for (AsciiDocTableColumnStyles c : AsciiDocTableColumnStyles.values()) System.out.println(c);
public static AsciiDocTableColumnStyles valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<AsciiDocTableColumnStyles>Copyright © 2025 Open Identity Platform Community. All rights reserved.