@API(status=MAINTAINED, since="1.8.0") public enum EdgeCasesMode extends java.lang.Enum<EdgeCasesMode>
If it is not set explicitly mode MIXIN will be used unless the property has only a single parameter. Then NONE applies.
Property
Enum Constant and Description |
---|
FIRST
Generate edge cases first.
|
MIXIN
Mix edge cases into random generation.
|
NONE
Do not _explicitly_ generate edge cases.
|
NOT_SET |
Modifier and Type | Method and Description |
---|---|
boolean |
activated() |
boolean |
generateFirst() |
boolean |
mixIn() |
static EdgeCasesMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EdgeCasesMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeCasesMode FIRST
public static final EdgeCasesMode MIXIN
public static final EdgeCasesMode NONE
@API(status=INTERNAL) public static final EdgeCasesMode NOT_SET
public static EdgeCasesMode[] values()
for (EdgeCasesMode c : EdgeCasesMode.values()) System.out.println(c);
public static EdgeCasesMode 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@API(status=INTERNAL) public boolean generateFirst()
@API(status=INTERNAL) public boolean mixIn()
@API(status=INTERNAL) public boolean activated()