Enum Result
- java.lang.Object
-
- java.lang.Enum<Result>
-
- edu.berkeley.cs.jqf.fuzz.guidance.Result
-
- All Implemented Interfaces:
Serializable
,Comparable<Result>
public enum Result extends Enum<Result>
Represents the result of a guided fuzzing trial.- Author:
- Rohan Padhye
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Result
valueOf(String name)
Returns the enum constant of this type with the specified name.static Result[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final Result SUCCESS
The run completed successfully without errors.
-
INVALID
public static final Result INVALID
The results of this run are to be discarded, as the input invalidated certain assumptions.
-
FAILURE
public static final Result FAILURE
The test method threw an uncaught exception. Assertion failures also fall in this category.
-
TIMEOUT
public static final Result TIMEOUT
The run timed out. Setting a timeout and monitoring for timeouts is guidance-specific. If a guidance does not set/throw timeouts, then it need not handle this result type.
-
-
Method Detail
-
values
public static Result[] 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 (Result c : Result.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Result 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 nameNullPointerException
- if the argument is null
-
-