play.templates
Enum TemplateCompiler.Parser.Token
java.lang.Object
java.lang.Enum<TemplateCompiler.Parser.Token>
play.templates.TemplateCompiler.Parser.Token
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<TemplateCompiler.Parser.Token>
- Enclosing class:
- TemplateCompiler.Parser
public static enum TemplateCompiler.Parser.Token
- extends java.lang.Enum<TemplateCompiler.Parser.Token>
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
EOF
public static final TemplateCompiler.Parser.Token EOF
PLAIN
public static final TemplateCompiler.Parser.Token PLAIN
SCRIPT
public static final TemplateCompiler.Parser.Token SCRIPT
EXPR
public static final TemplateCompiler.Parser.Token EXPR
START_TAG
public static final TemplateCompiler.Parser.Token START_TAG
END_TAG
public static final TemplateCompiler.Parser.Token END_TAG
MESSAGE
public static final TemplateCompiler.Parser.Token MESSAGE
ACTION
public static final TemplateCompiler.Parser.Token ACTION
ABS_ACTION
public static final TemplateCompiler.Parser.Token ABS_ACTION
COMMENT
public static final TemplateCompiler.Parser.Token COMMENT
values
public static TemplateCompiler.Parser.Token[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (TemplateCompiler.Parser.Token c : TemplateCompiler.Parser.Token.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TemplateCompiler.Parser.Token valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
Guillaume Bort & zenexity - Distributed under Apache 2 licence, without any warrantly