nl.uu.cs.treewidth.testing
Enum ResultChecker.TestType
java.lang.Object
java.lang.Enum<ResultChecker.TestType>
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>
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 |
LOWERBOUND
public static final ResultChecker.TestType LOWERBOUND
UPPERBOUND
public static final ResultChecker.TestType UPPERBOUND
EXACT
public static final ResultChecker.TestType EXACT
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