play.templates
Enum TemplateCompiler.Parser.Token

java.lang.Object
  extended by java.lang.Enum<TemplateCompiler.Parser.Token>
      extended by 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>


Enum Constant Summary
ABS_ACTION
           
ACTION
           
COMMENT
           
END_TAG
           
EOF
           
EXPR
           
MESSAGE
           
PLAIN
           
SCRIPT
           
START_TAG
           
 
Method Summary
static TemplateCompiler.Parser.Token valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TemplateCompiler.Parser.Token[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
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
 

Enum Constant Detail

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
Method Detail

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