Enum Class TagType

java.lang.Object
java.lang.Enum<TagType>
nablarch.test.tool.sanitizingcheck.tag.TagType
All Implemented Interfaces:
Serializable, Comparable<TagType>, Constable

public enum TagType extends Enum<TagType>
解析対象のタグタイプを表す列挙型。
  • Enum Constant Details

    • DIRECTIVE

      public static final TagType DIRECTIVE
      ディレクティブを表す
    • HTML_COMMENT

      public static final TagType HTML_COMMENT
      HTMLコメント
    • EL

      public static final TagType EL
      EL式
    • TAGLIB

      public static final TagType TAGLIB
      タグリブ
    • JSP_CORE

      public static final TagType JSP_CORE
      スクリプトレット
  • 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