Package net.jqwik.api.lifecycle
Enum TryExecutionResult.Status
- java.lang.Object
-
- java.lang.Enum<TryExecutionResult.Status>
-
- net.jqwik.api.lifecycle.TryExecutionResult.Status
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TryExecutionResult.Status>
- Enclosing interface:
- TryExecutionResult
public static enum TryExecutionResult.Status extends java.lang.Enum<TryExecutionResult.Status>
Status of running a single try.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TryExecutionResult.Status
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TryExecutionResult.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SATISFIED
public static final TryExecutionResult.Status SATISFIED
Current try does not falsify the property
-
FALSIFIED
public static final TryExecutionResult.Status FALSIFIED
Current try does falsify the property
-
INVALID
public static final TryExecutionResult.Status INVALID
Current try has invalid parameters
-
-
Method Detail
-
values
public static TryExecutionResult.Status[] 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 (TryExecutionResult.Status c : TryExecutionResult.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TryExecutionResult.Status 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 namejava.lang.NullPointerException
- if the argument is null
-
-