fr.umlv.tatoo.cc.parser.main
Enum ParserAliasPrototype

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

public enum ParserAliasPrototype
extends Enum<ParserAliasPrototype>
implements AliasPrototype


Enum Constant Summary
nonTerminal
           
parserDataTable
           
production
           
terminal
           
version
           
 
Method Summary
 String getDefaultTypeName()
           
 Unit getUnit()
           
static AliasPrototype[] parsers()
           
static ParserAliasPrototype valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ParserAliasPrototype[] 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

production

public static final ParserAliasPrototype production

terminal

public static final ParserAliasPrototype terminal

nonTerminal

public static final ParserAliasPrototype nonTerminal

parserDataTable

public static final ParserAliasPrototype parserDataTable

version

public static final ParserAliasPrototype version
Method Detail

values

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

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

valueOf

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

parsers

public static AliasPrototype[] parsers()