public static enum GenInputsAbstract.BehaviorType extends java.lang.Enum<GenInputsAbstract.BehaviorType>
| Enum Constant and Description |
|---|
ERROR
Occurrence of exception reveals an error.
|
EXPECTED
Occurrence of exception is expected behavior.
|
INVALID
Occurrence of exception indicates an invalid test.
|
| Modifier and Type | Method and Description |
|---|---|
static GenInputsAbstract.BehaviorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GenInputsAbstract.BehaviorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenInputsAbstract.BehaviorType ERROR
public static final GenInputsAbstract.BehaviorType EXPECTED
public static final GenInputsAbstract.BehaviorType INVALID
public static GenInputsAbstract.BehaviorType[] values()
for (GenInputsAbstract.BehaviorType c : GenInputsAbstract.BehaviorType.values()) System.out.println(c);
public static GenInputsAbstract.BehaviorType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null