org.sonar.commons.rules
Enum RuleFailureLevel

java.lang.Object
  extended by java.lang.Enum<RuleFailureLevel>
      extended by org.sonar.commons.rules.RuleFailureLevel
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RuleFailureLevel>

public enum RuleFailureLevel
extends java.lang.Enum<RuleFailureLevel>

Metrics data type


Enum Constant Summary
ERROR
           
INFO
          WARNING : DO NOT CHANGE THE ENUMERATION ORDER the enum ordinal is used for db persistence
WARNING
           
 
Method Summary
static RuleFailureLevel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RuleFailureLevel[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INFO

public static final RuleFailureLevel INFO
WARNING : DO NOT CHANGE THE ENUMERATION ORDER the enum ordinal is used for db persistence


WARNING

public static final RuleFailureLevel WARNING

ERROR

public static final RuleFailureLevel ERROR
Method Detail

values

public static final RuleFailureLevel[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(RuleFailureLevel c : RuleFailureLevel.values())
        System.out.println(c);

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

valueOf

public static RuleFailureLevel valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name


Copyright © 2009 SonarSource SA. All Rights Reserved.