Enum TableConversion
- java.lang.Object
-
- java.lang.Enum<TableConversion>
-
- com.vladsch.flexmark.html2md.converter.TableConversion
-
- All Implemented Interfaces:
Serializable,Comparable<TableConversion>
public enum TableConversion extends Enum<TableConversion>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HTMLMARKDOWNMARKDOWN_MACROSMARKDOWN_MACROS_NO_SINGLE_CELLMARKDOWN_NO_SINGLE_CELLNONETEXT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TableConversionvalueOf(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.
-
-
-
Enum Constant Detail
-
NONE
public static final TableConversion NONE
-
MARKDOWN
public static final TableConversion MARKDOWN
-
MARKDOWN_NO_SINGLE_CELL
public static final TableConversion MARKDOWN_NO_SINGLE_CELL
-
MARKDOWN_MACROS
public static final TableConversion MARKDOWN_MACROS
-
MARKDOWN_MACROS_NO_SINGLE_CELL
public static final TableConversion MARKDOWN_MACROS_NO_SINGLE_CELL
-
TEXT
public static final TableConversion TEXT
-
HTML
public static final TableConversion HTML
-
-
Method Detail
-
values
public static TableConversion[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TableConversion c : TableConversion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TableConversion valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-