ch.akuhn.fame.parser
Enum TokenType

java.lang.Object
  extended by java.lang.Enum<TokenType>
      extended by ch.akuhn.fame.parser.TokenType
All Implemented Interfaces:
Serializable, Comparable<TokenType>

public enum TokenType
extends Enum<TokenType>

A token type.

Author:
akuhn

Enum Constant Summary
BOOLEAN
           
CLOSE
           
EOF
           
ID
           
KEYWORD
           
NAME
           
NUMBER
           
OPEN
           
REF
           
STRING
           
UNDEFINED
           
 
Method Summary
static TokenType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TokenType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BOOLEAN

public static final TokenType BOOLEAN

CLOSE

public static final TokenType CLOSE

KEYWORD

public static final TokenType KEYWORD

EOF

public static final TokenType EOF

NAME

public static final TokenType NAME

NUMBER

public static final TokenType NUMBER

OPEN

public static final TokenType OPEN

ID

public static final TokenType ID

REF

public static final TokenType REF

STRING

public static final TokenType STRING

UNDEFINED

public static final TokenType UNDEFINED
Method Detail

values

public static final TokenType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(TokenType c : TokenType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static TokenType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name