@API(status=MAINTAINED, since="1.0") public interface BigIntegerArbitrary extends NumericalArbitrary<java.math.BigInteger,BigIntegerArbitrary>
Arbitrary.ArbitraryFacade
Modifier and Type | Method and Description |
---|---|
default BigIntegerArbitrary |
between(java.math.BigInteger min,
java.math.BigInteger max)
Set the allowed lower
min (included) and upper max (included) bounder of generated numbers. |
BigIntegerArbitrary |
greaterOrEqual(java.math.BigInteger min)
Set the allowed lower
min (included) bounder of generated numbers. |
BigIntegerArbitrary |
lessOrEqual(java.math.BigInteger max)
Set the allowed upper
max (included) bounder of generated numbers. |
Arbitrary<java.math.BigInteger> |
shrinkTowards(java.math.BigInteger target)
Set shrinking target to
target which must be between the allowed bounds. |
withDistribution
allValues, array, asGeneric, collect, dontShrink, edgeCases, exhaustive, exhaustive, filter, fixGenSize, flatMap, forEachValue, generator, ignoreException, injectDuplicates, injectNull, isUnique, iterator, list, map, optional, sample, sampleStream, set, stream, tuple1, tuple2, tuple3, tuple4, unique
default BigIntegerArbitrary between(java.math.BigInteger min, java.math.BigInteger max)
min
(included) and upper max
(included) bounder of generated numbers.BigIntegerArbitrary greaterOrEqual(java.math.BigInteger min)
min
(included) bounder of generated numbers.BigIntegerArbitrary lessOrEqual(java.math.BigInteger max)
max
(included) bounder of generated numbers.@API(status=EXPERIMENTAL, since="1.1.4") Arbitrary<java.math.BigInteger> shrinkTowards(java.math.BigInteger target)
target
which must be between the allowed bounds.