Enum TagType
- java.lang.Object
-
- java.lang.Enum<TagType>
-
- com.vladsch.flexmark.html2md.converter.TagType
-
-
Constructor Summary
Constructors Modifier Constructor Description private
TagType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TagType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TagType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
A
public static final TagType A
-
ABBR
public static final TagType ABBR
-
ASIDE
public static final TagType ASIDE
-
BR
public static final TagType BR
-
BLOCKQUOTE
public static final TagType BLOCKQUOTE
-
CAPTION
public static final TagType CAPTION
-
CODE
public static final TagType CODE
-
DEL
public static final TagType DEL
-
DIV
public static final TagType DIV
-
DL
public static final TagType DL
-
DD
public static final TagType DD
-
DT
public static final TagType DT
-
_EMPHASIS
public static final TagType _EMPHASIS
-
HR
public static final TagType HR
-
IMG
public static final TagType IMG
-
INPUT
public static final TagType INPUT
-
INS
public static final TagType INS
-
LI
public static final TagType LI
-
OL
public static final TagType OL
-
P
public static final TagType P
-
PRE
public static final TagType PRE
-
_STRONG_EMPHASIS
public static final TagType _STRONG_EMPHASIS
-
SUB
public static final TagType SUB
-
SUP
public static final TagType SUP
-
SVG
public static final TagType SVG
-
TABLE
public static final TagType TABLE
-
TBODY
public static final TagType TBODY
-
TD
public static final TagType TD
-
TH
public static final TagType TH
-
THEAD
public static final TagType THEAD
-
TR
public static final TagType TR
-
UL
public static final TagType UL
-
_HEADING
public static final TagType _HEADING
-
_UNWRAPPED
public static final TagType _UNWRAPPED
-
_SPAN
public static final TagType _SPAN
-
_WRAPPED
public static final TagType _WRAPPED
-
_COMMENT
public static final TagType _COMMENT
-
_TEXT
public static final TagType _TEXT
-
MATH
public static final TagType MATH
-
-
Method Detail
-
values
public static TagType[] 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 (TagType c : TagType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TagType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-