fr.umlv.tatoo.cc.parser.table
Enum AbstractConflictDiagnosticReporter.InfoKey

java.lang.Object
  extended by java.lang.Enum<AbstractConflictDiagnosticReporter.InfoKey>
      extended by fr.umlv.tatoo.cc.parser.table.AbstractConflictDiagnosticReporter.InfoKey
All Implemented Interfaces:
DiagnosticReporter.Key, Serializable, Comparable<AbstractConflictDiagnosticReporter.InfoKey>
Enclosing class:
AbstractConflictDiagnosticReporter

public static enum AbstractConflictDiagnosticReporter.InfoKey
extends Enum<AbstractConflictDiagnosticReporter.InfoKey>
implements DiagnosticReporter.Key


Enum Constant Summary
associativity_error
           
associativity_reduce
           
associativity_shift
           
 
Method Summary
 DiagnosticReporter.Level defaultLevel()
           
static AbstractConflictDiagnosticReporter.InfoKey valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AbstractConflictDiagnosticReporter.InfoKey[] 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.log.DiagnosticReporter.Key
name
 

Enum Constant Detail

associativity_shift

public static final AbstractConflictDiagnosticReporter.InfoKey associativity_shift

associativity_reduce

public static final AbstractConflictDiagnosticReporter.InfoKey associativity_reduce

associativity_error

public static final AbstractConflictDiagnosticReporter.InfoKey associativity_error
Method Detail

values

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

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

valueOf

public static AbstractConflictDiagnosticReporter.InfoKey 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

defaultLevel

public DiagnosticReporter.Level defaultLevel()
Specified by:
defaultLevel in interface DiagnosticReporter.Key