fr.umlv.tatoo.cc.lexer.main
Enum LexerAliasPrototype

java.lang.Object
  extended by java.lang.Enum<LexerAliasPrototype>
      extended by fr.umlv.tatoo.cc.lexer.main.LexerAliasPrototype
All Implemented Interfaces:
AliasPrototype, Serializable, Comparable<LexerAliasPrototype>

public enum LexerAliasPrototype
extends Enum<LexerAliasPrototype>
implements AliasPrototype


Enum Constant Summary
lexerDataTable
           
lexerSwitch
           
rule
           
 
Method Summary
 String getDefaultTypeName()
           
 Unit getUnit()
           
static AliasPrototype[] lexers()
           
static LexerAliasPrototype valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LexerAliasPrototype[] 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
 
Methods inherited from interface fr.umlv.tatoo.cc.common.main.AliasPrototype
name
 

Enum Constant Detail

rule

public static final LexerAliasPrototype rule

lexerDataTable

public static final LexerAliasPrototype lexerDataTable

lexerSwitch

public static final LexerAliasPrototype lexerSwitch
Method Detail

values

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

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

valueOf

public static LexerAliasPrototype 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

getDefaultTypeName

public String getDefaultTypeName()
Specified by:
getDefaultTypeName in interface AliasPrototype

getUnit

public Unit getUnit()
Specified by:
getUnit in interface AliasPrototype

lexers

public static AliasPrototype[] lexers()