fr.umlv.tatoo.cc.ebnf.ast
Enum TerminalDefAST.TerminalKind

java.lang.Object
  extended by java.lang.Enum<TerminalDefAST.TerminalKind>
      extended by fr.umlv.tatoo.cc.ebnf.ast.TerminalDefAST.TerminalKind
All Implemented Interfaces:
Serializable, Comparable<TerminalDefAST.TerminalKind>
Enclosing class:
TerminalDefAST

public static enum TerminalDefAST.TerminalKind
extends Enum<TerminalDefAST.TerminalKind>


Enum Constant Summary
BLANK
           
BRANCH
           
EOF
           
ERROR
           
TOKEN
           
 
Method Summary
static TerminalDefAST.TerminalKind valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TerminalDefAST.TerminalKind[] 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

BLANK

public static final TerminalDefAST.TerminalKind BLANK

BRANCH

public static final TerminalDefAST.TerminalKind BRANCH

ERROR

public static final TerminalDefAST.TerminalKind ERROR

EOF

public static final TerminalDefAST.TerminalKind EOF

TOKEN

public static final TerminalDefAST.TerminalKind TOKEN
Method Detail

values

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

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

valueOf

public static TerminalDefAST.TerminalKind 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
NullPointerException - if the argument is null