nl.uu.cs.treewidth.testing
Enum ResultChecker.TestType

java.lang.Object
  extended by java.lang.Enum<ResultChecker.TestType>
      extended by nl.uu.cs.treewidth.testing.ResultChecker.TestType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ResultChecker.TestType>
Enclosing class:
ResultChecker

public static enum ResultChecker.TestType
extends java.lang.Enum<ResultChecker.TestType>


Enum Constant Summary
EXACT
           
LOWERBOUND
           
UPPERBOUND
           
 
Method Summary
static ResultChecker.TestType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ResultChecker.TestType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LOWERBOUND

public static final ResultChecker.TestType LOWERBOUND

UPPERBOUND

public static final ResultChecker.TestType UPPERBOUND

EXACT

public static final ResultChecker.TestType EXACT
Method Detail

values

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

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

valueOf

public static ResultChecker.TestType 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