Package net.jqwik.api
Schnittstelle ExhaustiveGenerator<T extends @Nullable Object>
- Alle Superschnittstellen:
Iterable<T>
@API(status=INTERNAL)
public interface ExhaustiveGenerator<T extends @Nullable Object>
extends Iterable<T>
Used only internally to run and compute exhaustive generation of parameters
-
Verschachtelte Klassen - Übersicht
Modifizierer und TypSchnittstelleBeschreibungstatic class
-
Feldübersicht
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungdefault ExhaustiveGenerator
<T> default ExhaustiveGenerator
<T> ignoreExceptions
(int maxThrows, Class<? extends Throwable>[] exceptionTypes) default ExhaustiveGenerator
<T> default <U extends @Nullable Object>
ExhaustiveGenerator<U> long
maxCount()
Von Schnittstelle geerbte Methoden java.lang.Iterable
forEach, iterator, spliterator
-
Felddetails
-
MAXIMUM_SAMPLES_TO_GENERATE
static final long MAXIMUM_SAMPLES_TO_GENERATE- Siehe auch:
-
-
Methodendetails
-
maxCount
long maxCount()- Gibt zurück:
- the maximum number of values that will be generated
-
map
default <U extends @Nullable Object> ExhaustiveGenerator<U> map(Function<? super T, ? extends U> mapper) -
filter
-
injectNull
-
ignoreExceptions
default ExhaustiveGenerator<T> ignoreExceptions(int maxThrows, Class<? extends Throwable>[] exceptionTypes)
-