Enum Constant and Description |
---|
AS |
AUTO_ESCAPE |
BLOCK |
DO |
ELSE |
ELSE_IF |
EMBED |
END_AUTO_ESCAPE |
END_BLOCK |
END_EMBED |
END_FILTER |
END_FOR |
END_IF |
END_MACRO |
END_SPACELESS |
END_VERBATIM |
EXTENDS |
FALSE |
FILTER |
FLUSH |
FOR |
IF |
IMPORT |
IN |
INCLUDE |
IS |
MACRO |
NOT |
NULL |
SET |
SPACELESS |
TRUE |
VERBATIM |
WITH |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Keyword |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Keyword[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Keyword INCLUDE
public static final Keyword SET
public static final Keyword BLOCK
public static final Keyword END_BLOCK
public static final Keyword IF
public static final Keyword END_IF
public static final Keyword ELSE_IF
public static final Keyword ELSE
public static final Keyword FOR
public static final Keyword END_FOR
public static final Keyword IMPORT
public static final Keyword MACRO
public static final Keyword END_MACRO
public static final Keyword EXTENDS
public static final Keyword EMBED
public static final Keyword END_EMBED
public static final Keyword TRUE
public static final Keyword FALSE
public static final Keyword IN
public static final Keyword AS
public static final Keyword AUTO_ESCAPE
public static final Keyword END_AUTO_ESCAPE
public static final Keyword DO
public static final Keyword FLUSH
public static final Keyword VERBATIM
public static final Keyword END_VERBATIM
public static final Keyword SPACELESS
public static final Keyword END_SPACELESS
public static final Keyword FILTER
public static final Keyword END_FILTER
public static final Keyword NULL
public static final Keyword IS
public static final Keyword NOT
public static final Keyword WITH
public static Keyword[] values()
for (Keyword c : Keyword.values()) System.out.println(c);
public static Keyword 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 toString()
toString
in class java.lang.Enum<Keyword>