public static enum JspCore.CoreTagType extends java.lang.Enum<JspCore.CoreTagType>
Enum Constant and Description |
---|
COMMENT
コメント
|
DEFINITION
宣言
|
EXPRESSION
式
|
SCRIPTLET
スクリプトレット
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCloseTag()
閉じタグ。
|
static JspCore.CoreTagType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JspCore.CoreTagType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JspCore.CoreTagType COMMENT
public static final JspCore.CoreTagType SCRIPTLET
public static final JspCore.CoreTagType DEFINITION
public static final JspCore.CoreTagType EXPRESSION
public static JspCore.CoreTagType[] values()
for (JspCore.CoreTagType c : JspCore.CoreTagType.values()) System.out.println(c);
public static JspCore.CoreTagType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getCloseTag()