org.apache.tapestry.parse
Class TokenType

java.lang.Object
  extended by org.apache.commons.lang.enum.Enum
      extended by org.apache.tapestry.parse.TokenType
All Implemented Interfaces:
Serializable, Comparable

public class TokenType
extends org.apache.commons.lang.enum.Enum

An Enum of the different possible token types.

Version:
$Id: TokenType.java 243791 2004-02-19 17:38:13Z hlship $
Author:
Howard Lewis Ship
See Also:
TemplateToken, Serialized Form

Field Summary
static TokenType CLOSE
          The closing tag of an element.
static TokenType LOCALIZATION
          A reference to a localized string.
static TokenType OPEN
          The opening tag of an element.
static TokenType TEXT
          Raw HTML text.
 
Method Summary
 
Methods inherited from class org.apache.commons.lang.enum.Enum
compareTo, equals, getEnum, getEnumList, getEnumMap, getName, hashCode, iterator, readResolve, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

TEXT

public static final TokenType TEXT
Raw HTML text.

See Also:
TextToken

OPEN

public static final TokenType OPEN
The opening tag of an element.

See Also:
OpenToken

CLOSE

public static final TokenType CLOSE
The closing tag of an element.

See Also:
CloseToken

LOCALIZATION

public static final TokenType LOCALIZATION
A reference to a localized string.

Since:
2.0.4