edu.rice.cs.cunit.threadCheck.subAnnot
Enum SubAnnotThreadCheck.Violation.TYPE

java.lang.Object
  extended by java.lang.Enum<SubAnnotThreadCheck.Violation.TYPE>
      extended by edu.rice.cs.cunit.threadCheck.subAnnot.SubAnnotThreadCheck.Violation.TYPE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SubAnnotThreadCheck.Violation.TYPE>
Enclosing class:
SubAnnotThreadCheck.Violation

public static enum SubAnnotThreadCheck.Violation.TYPE
extends java.lang.Enum<SubAnnotThreadCheck.Violation.TYPE>


Enum Constant Summary
NOTRUNBY_GROUP
           
NOTRUNBY_ID
           
NOTRUNBY_NAME
           
ONLYRUNBY
           
PREDICATE
           
REFLECTION_PREDICATE
           
 
Method Summary
static SubAnnotThreadCheck.Violation.TYPE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SubAnnotThreadCheck.Violation.TYPE[] 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
 

Enum Constant Detail

NOTRUNBY_NAME

public static final SubAnnotThreadCheck.Violation.TYPE NOTRUNBY_NAME

NOTRUNBY_GROUP

public static final SubAnnotThreadCheck.Violation.TYPE NOTRUNBY_GROUP

NOTRUNBY_ID

public static final SubAnnotThreadCheck.Violation.TYPE NOTRUNBY_ID

ONLYRUNBY

public static final SubAnnotThreadCheck.Violation.TYPE ONLYRUNBY

PREDICATE

public static final SubAnnotThreadCheck.Violation.TYPE PREDICATE

REFLECTION_PREDICATE

public static final SubAnnotThreadCheck.Violation.TYPE REFLECTION_PREDICATE
Method Detail

values

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

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

valueOf

public static SubAnnotThreadCheck.Violation.TYPE 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
java.lang.NullPointerException - if the argument is null