Enum Class TagType

java.lang.Object
java.lang.Enum<TagType>
com.vladsch.flexmark.html2md.converter.TagType
All Implemented Interfaces:
Serializable, Comparable<TagType>, Constable

enum TagType extends Enum<TagType>
  • Enum Constant Details

    • 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
  • Constructor Details

    • TagType

      private TagType()
  • Method Details

    • values

      public static TagType[] 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

      public static TagType valueOf(String name)
      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 name
      NullPointerException - if the argument is null