public enum TableConversion extends Enum<TableConversion>
| Enum Constant and Description |
|---|
HTML |
MARKDOWN |
MARKDOWN_MACROS |
MARKDOWN_MACROS_NO_SINGLE_CELL |
MARKDOWN_NO_SINGLE_CELL |
NONE |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static TableConversion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableConversion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableConversion NONE
public static final TableConversion MARKDOWN
public static final TableConversion MARKDOWN_NO_SINGLE_CELL
public static final TableConversion MARKDOWN_MACROS
public static final TableConversion MARKDOWN_MACROS_NO_SINGLE_CELL
public static final TableConversion TEXT
public static final TableConversion HTML
public static TableConversion[] values()
for (TableConversion c : TableConversion.values()) System.out.println(c);
public static TableConversion 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 nullCopyright © 2019. All rights reserved.