@API(status=MAINTAINED, since="1.0") public interface ShortArbitrary extends NumericalArbitrary<java.lang.Short,ShortArbitrary>
Arbitrary.ArbitraryFacade
Modifier and Type | Method and Description |
---|---|
default ShortArbitrary |
between(short min,
short max)
Set the allowed lower
min (included) and upper max (included) bounder of generated numbers. |
ShortArbitrary |
greaterOrEqual(short min)
Set the allowed lower
min (included) bounder of generated numbers. |
ShortArbitrary |
lessOrEqual(short max)
Set the allowed upper
max (included) bounder of generated numbers. |
Arbitrary<java.lang.Short> |
shrinkTowards(short 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, tuple5, unique
default ShortArbitrary between(short min, short max)
min
(included) and upper max
(included) bounder of generated numbers.ShortArbitrary greaterOrEqual(short min)
min
(included) bounder of generated numbers.ShortArbitrary lessOrEqual(short max)
max
(included) bounder of generated numbers.@API(status=EXPERIMENTAL, since="1.1.4") Arbitrary<java.lang.Short> shrinkTowards(short target)
target
which must be between the allowed bounds.