public static enum JspElementType.Kind extends java.lang.Enum<JspElementType.Kind>
Enum Constant and Description |
---|
HOLDER_METHOD |
HOLDER_TEMPLATE_DATA |
JSP_BLOCK_STATEMENT |
JSP_CLASS |
JSP_CLASS_LEVEL_DECLARATION_STATEMENT |
JSP_CODE_BLOCK |
JSP_EXPRESSION |
JSP_METHOD_CALL |
JSP_SCRIPTLET |
JSP_TEMPLATE_EXPRESSION |
JSP_TEMPLATE_STATEMENT |
JSP_WHILE_STATEMENT |
Modifier and Type | Method and Description |
---|---|
static JspElementType.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JspElementType.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JspElementType.Kind HOLDER_TEMPLATE_DATA
public static final JspElementType.Kind JSP_TEMPLATE_EXPRESSION
public static final JspElementType.Kind HOLDER_METHOD
public static final JspElementType.Kind JSP_TEMPLATE_STATEMENT
public static final JspElementType.Kind JSP_CLASS_LEVEL_DECLARATION_STATEMENT
public static final JspElementType.Kind JSP_CODE_BLOCK
public static final JspElementType.Kind JSP_WHILE_STATEMENT
public static final JspElementType.Kind JSP_BLOCK_STATEMENT
public static final JspElementType.Kind JSP_CLASS
public static final JspElementType.Kind JSP_METHOD_CALL
public static final JspElementType.Kind JSP_EXPRESSION
public static final JspElementType.Kind JSP_SCRIPTLET
public static JspElementType.Kind[] values()
for (JspElementType.Kind c : JspElementType.Kind.values()) System.out.println(c);
public static JspElementType.Kind 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 null