fr.umlv.tatoo.cc.tools.main
Enum ToolsAliasPrototype

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

public enum ToolsAliasPrototype
extends Enum<ToolsAliasPrototype>
implements AliasPrototype


Enum Constant Summary
analyzer
           
analyzerBuilder
           
grammarEvaluator
           
terminalEvaluator
           
terminalRulesMap
           
toolsProcessor
           
 
Method Summary
 String getDefaultTypeName()
           
 Unit getUnit()
           
static AliasPrototype[] tools()
           
static ToolsAliasPrototype valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ToolsAliasPrototype[] 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

terminalEvaluator

public static final ToolsAliasPrototype terminalEvaluator

grammarEvaluator

public static final ToolsAliasPrototype grammarEvaluator

toolsProcessor

public static final ToolsAliasPrototype toolsProcessor

analyzer

public static final ToolsAliasPrototype analyzer

analyzerBuilder

public static final ToolsAliasPrototype analyzerBuilder

terminalRulesMap

public static final ToolsAliasPrototype terminalRulesMap
Method Detail

values

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

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

valueOf

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

tools

public static AliasPrototype[] tools()