@API(status=MAINTAINED,
     since="1.0")
public interface IntegerArbitrary
extends NumericalArbitrary<java.lang.Integer,IntegerArbitrary>
Arbitrary.ArbitraryFacade| Modifier and Type | Method and Description | 
|---|---|
| default IntegerArbitrary | between(int min,
       int max)Set the allowed lower  min(included) and uppermax(included) bounder of generated numbers. | 
| IntegerArbitrary | greaterOrEqual(int min)Set the allowed lower  min(included) bounder of generated numbers. | 
| IntegerArbitrary | lessOrEqual(int max)Set the allowed upper  max(included) bounder of generated numbers. | 
| IntegerArbitrary | shrinkTowards(int target)Set shrinking target to  targetwhich must be between the allowed bounds. | 
withDistributionallValues, array, asGeneric, collect, dontShrink, edgeCases, edgeCases, edgeCases, exhaustive, exhaustive, filter, filter, fixGenSize, flatMap, forEachValue, generator, generator, generatorWithEmbeddedEdgeCases, ignoreException, ignoreException, ignoreExceptions, ignoreExceptions, injectDuplicates, injectNull, isGeneratorMemoizable, iterator, list, map, optional, optional, sample, sampleStream, set, stream, tuple1, tuple2, tuple3, tuple4, tuple5, withoutEdgeCasesdefault IntegerArbitrary between(int min, int max)
min (included) and upper max (included) bounder of generated numbers.IntegerArbitrary greaterOrEqual(int min)
min (included) bounder of generated numbers.IntegerArbitrary lessOrEqual(int max)
max (included) bounder of generated numbers.@API(status=MAINTAINED,
     since="1.4.0")
IntegerArbitrary shrinkTowards(int target)
target which must be between the allowed bounds.