simple.lexer
Enum Token.Type

java.lang.Object
  extended by java.lang.Enum<Token.Type>
      extended by simple.lexer.Token.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Token.Type>
Enclosing class:
Token

public static enum Token.Type
extends java.lang.Enum<Token.Type>


Enum Constant Summary
EOF
          Has static value "$".
FACTOP
          No static value; should be "*" or "/".
LPAREN
          Has static value "(".
NUMBER
          No static value; should be "[0-9]".
RPAREN
          Has static value ")".
TERMOP
          No static value; should be "+" or "-".
 
Method Summary
static Token.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Token.Type[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LPAREN

public static final Token.Type LPAREN
Has static value "(".


RPAREN

public static final Token.Type RPAREN
Has static value ")".


TERMOP

public static final Token.Type TERMOP
No static value; should be "+" or "-".


FACTOP

public static final Token.Type FACTOP
No static value; should be "*" or "/".


NUMBER

public static final Token.Type NUMBER
No static value; should be "[0-9]".


EOF

public static final Token.Type EOF
Has static value "$".

Method Detail

values

public static final Token.Type[] 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(Token.Type c : Token.Type.values())
        System.out.println(c);

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

valueOf

public static Token.Type 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