de.cau.cs.kieler.kiml.grana
Enum AnalysisFailed.Type

java.lang.Object
  extended by java.lang.Enum<AnalysisFailed.Type>
      extended by de.cau.cs.kieler.kiml.grana.AnalysisFailed.Type
All Implemented Interfaces:
Comparable<AnalysisFailed.Type>
Enclosing class:
AnalysisFailed

public static enum AnalysisFailed.Type
extends Enum<AnalysisFailed.Type>

the analysis failed types.

Rating red

Enum Constant Summary
Canceled
          the type for a canceled analysis.
Dependency
          the type for a missing or wrong typed dependency result.
Failed
          the type for an analysis which failed in general.
 
Method Summary
static AnalysisFailed.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AnalysisFailed.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

Failed

public static final AnalysisFailed.Type Failed
the type for an analysis which failed in general.


Canceled

public static final AnalysisFailed.Type Canceled
the type for a canceled analysis.


Dependency

public static final AnalysisFailed.Type Dependency
the type for a missing or wrong typed dependency result.

Method Detail

values

public static AnalysisFailed.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 (AnalysisFailed.Type c : AnalysisFailed.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 AnalysisFailed.Type 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