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

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

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


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

shift_by_default

public static final AbstractConflictDiagnosticReporter.WarningKey shift_by_default
Method Detail

values

public static AbstractConflictDiagnosticReporter.WarningKey[] 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.WarningKey c : AbstractConflictDiagnosticReporter.WarningKey.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.WarningKey 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