water.exec
Enum RLikeParser.Token.Type

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

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


Enum Constant Summary
ttEOF
           
ttFloat
           
ttIdent
           
ttInteger
           
ttOpAdd
           
ttOpAnd
           
ttOpAssign
           
ttOpBracketClose
           
ttOpBracketOpen
           
ttOpColon
           
ttOpComma
           
ttOpDiv
           
ttOpDollar
           
ttOpEq
           
ttOpGreater
           
ttOpGreaterOrEq
           
ttOpIif
           
ttOpLess
           
ttOpLessOrEq
           
ttOpMod
           
ttOpMul
           
ttOpNeq
           
ttOpNot
           
ttOpOr
           
ttOpParClose
           
ttOpParOpen
           
ttOpRightAssign
           
ttOpSub
           
ttString
           
ttUnknown
           
 
Method Summary
 java.lang.String toString()
           
static RLikeParser.Token.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RLikeParser.Token.Type[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ttFloat

public static final RLikeParser.Token.Type ttFloat

ttInteger

public static final RLikeParser.Token.Type ttInteger

ttIdent

public static final RLikeParser.Token.Type ttIdent

ttString

public static final RLikeParser.Token.Type ttString

ttOpAssign

public static final RLikeParser.Token.Type ttOpAssign

ttOpRightAssign

public static final RLikeParser.Token.Type ttOpRightAssign

ttOpDollar

public static final RLikeParser.Token.Type ttOpDollar

ttOpAdd

public static final RLikeParser.Token.Type ttOpAdd

ttOpSub

public static final RLikeParser.Token.Type ttOpSub

ttOpMul

public static final RLikeParser.Token.Type ttOpMul

ttOpDiv

public static final RLikeParser.Token.Type ttOpDiv

ttOpMod

public static final RLikeParser.Token.Type ttOpMod

ttOpParOpen

public static final RLikeParser.Token.Type ttOpParOpen

ttOpParClose

public static final RLikeParser.Token.Type ttOpParClose

ttOpBracketOpen

public static final RLikeParser.Token.Type ttOpBracketOpen

ttOpBracketClose

public static final RLikeParser.Token.Type ttOpBracketClose

ttOpLess

public static final RLikeParser.Token.Type ttOpLess

ttOpGreater

public static final RLikeParser.Token.Type ttOpGreater

ttOpEq

public static final RLikeParser.Token.Type ttOpEq

ttOpNeq

public static final RLikeParser.Token.Type ttOpNeq

ttOpLessOrEq

public static final RLikeParser.Token.Type ttOpLessOrEq

ttOpGreaterOrEq

public static final RLikeParser.Token.Type ttOpGreaterOrEq

ttOpAnd

public static final RLikeParser.Token.Type ttOpAnd

ttOpOr

public static final RLikeParser.Token.Type ttOpOr

ttOpNot

public static final RLikeParser.Token.Type ttOpNot

ttOpComma

public static final RLikeParser.Token.Type ttOpComma

ttOpIif

public static final RLikeParser.Token.Type ttOpIif

ttOpColon

public static final RLikeParser.Token.Type ttOpColon

ttEOF

public static final RLikeParser.Token.Type ttEOF

ttUnknown

public static final RLikeParser.Token.Type ttUnknown
Method Detail

values

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

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

valueOf

public static RLikeParser.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
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<RLikeParser.Token.Type>