Package net.jqwik.time.api.arbitraries
Interface LocalDateArbitrary
@API(status=EXPERIMENTAL,
since="1.4.0")
public interface LocalDateArbitrary
extends Arbitrary<LocalDate>
Fluent interface to configure the generation of local date values.
All generated dates use the Gregorian Calendar, even if they are before October 15, 1582.
By default, local dates with years between 1900 and 2500 are generated.
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.jqwik.api.Arbitrary
Arbitrary.ArbitraryFacade
-
Method Summary
Modifier and TypeMethodDescriptionatTheEarliest
(LocalDate min) Set the allowed lowermin
(included) bounder of generated local date values.atTheLatest
(LocalDate max) Set the allowed uppermax
(included) bounder of generated local date values.default LocalDateArbitrary
Set the allowed lowermin
(included) and uppermax
(included) bounder of generated local date values.dayOfMonthBetween
(int min, int max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated day of month values.default LocalDateArbitrary
monthBetween
(int min, int max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated month values.monthBetween
(Month min, Month max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated month values.onlyDaysOfWeek
(DayOfWeek... daysOfWeek) Set an array of alloweddaysOfWeek
.onlyMonths
(Month... months) Set an array of allowedmonths
.default LocalDateArbitrary
yearBetween
(int min, int max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated year values.yearBetween
(Year min, Year max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated year values.Methods inherited from interface net.jqwik.api.Arbitrary
allValues, 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, withoutEdgeCases
-
Method Details
-
between
Set the allowed lowermin
(included) and uppermax
(included) bounder of generated local date values. -
atTheEarliest
Set the allowed lowermin
(included) bounder of generated local date values. -
atTheLatest
Set the allowed uppermax
(included) bounder of generated local date values. -
yearBetween
Set the allowed lowermin
(included) and uppermax
(included) bounder of generated year values. The years can be between1
andYear.MAX_VALUE
.Calling this method is equivalent to calling between(LocalDate, LocalDate) assuming Jan 1 and Dec 31 as first and last day of those years.
-
yearBetween
Set the allowed lowermin
(included) and uppermax
(included) bounder of generated year values. Theint
values can be between1
andYear.MAX_VALUE
.Calling this method is equivalent to calling between(LocalDate, LocalDate) assuming Jan 1 and Dec 31 as first and last day of those years.
-
monthBetween
Set the allowed lowermin
(included) and uppermax
(included) bounder of generated month values. -
monthBetween
Set the allowed lowermin
(included) and uppermax
(included) bounder of generated month values. Theint
values can be between 1 and 12. -
onlyMonths
Set an array of allowedmonths
. -
dayOfMonthBetween
Set the allowed lowermin
(included) and uppermax
(included) bounder of generated day of month values. Theint
values can be between 1 and 31. -
onlyDaysOfWeek
Set an array of alloweddaysOfWeek
.
-