Package net.jqwik.time.api.arbitraries
Interface LocalDateTimeArbitrary
- All Superinterfaces:
Arbitrary<LocalDateTime>
@API(status=EXPERIMENTAL,
since="1.5.1")
public interface LocalDateTimeArbitrary
extends Arbitrary<LocalDateTime>
Fluent interface to configure the generation of local date time values.
All generated date times use the Gregorian Calendar, even if they are before October 15, 1582.
By default, local date times 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 TypeMethodDescriptionSet the allowed lowermin
(included) bounder of generated local date time values.atTheLatest
(LocalDateTime max) Set the allowed uppermax
(included) bounder of generated local date time values.default LocalDateTimeArbitrary
between
(LocalDateTime min, LocalDateTime max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated local date time values.dateBetween
(LocalDate min, LocalDate max) 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.hourBetween
(int min, int max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated hour values.minuteBetween
(int min, int max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated minute values.default LocalDateTimeArbitrary
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.ofPrecision
(ChronoUnit ofPrecision) Constrain the precision of generated values.onlyDaysOfWeek
(DayOfWeek... daysOfWeek) Set an array of alloweddaysOfWeek
.onlyMonths
(Month... months) Set an array of allowedmonths
.secondBetween
(int min, int max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated second values.timeBetween
(LocalTime min, LocalTime max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated local time values.default LocalDateTimeArbitrary
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, 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 time values. If you don't explicitly set the precision and use min/max values with precision milliseconds/microseconds/nanoseconds, the precision of your min/max value is implicitly set. -
atTheEarliest
Set the allowed lowermin
(included) bounder of generated local date time values. If you don't explicitly set the precision and use min/max values with precision milliseconds/microseconds/nanoseconds, the precision of your min/max value is implicitly set. -
atTheLatest
Set the allowed uppermax
(included) bounder of generated local date time values. If you don't explicitly set the precision and use min/max values with precision milliseconds/microseconds/nanoseconds, the precision of your min/max value is implicitly set. -
dateBetween
@API(status=EXPERIMENTAL, since="1.5.2") LocalDateTimeArbitrary dateBetween(LocalDate min, LocalDate max) Set the allowed lowermin
(included) and 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 dateBetween(LocalDate, LocalDate) assuming Jan 1 and Dec 31 as first and last day of those years.
-
yearBetween
@API(status=EXPERIMENTAL, since="1.5.2") default LocalDateTimeArbitrary yearBetween(int min, int max) 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 dateBetween(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
@API(status=EXPERIMENTAL, since="1.5.2") default LocalDateTimeArbitrary monthBetween(int min, int max) 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
@API(status=EXPERIMENTAL, since="1.5.2") LocalDateTimeArbitrary onlyDaysOfWeek(DayOfWeek... daysOfWeek) Set an array of alloweddaysOfWeek
. -
timeBetween
@API(status=EXPERIMENTAL, since="1.5.2") LocalDateTimeArbitrary timeBetween(LocalTime min, LocalTime max) Set the allowed lowermin
(included) and uppermax
(included) bounder of generated local time values. If you don't explicitly set the precision and use min/max values with precision milliseconds/microseconds/nanoseconds, the precision of your min/max value is implicitly set. -
hourBetween
Set the allowed lowermin
(included) and uppermax
(included) bounder of generated hour values. The hours can be between0
and23
. -
minuteBetween
Set the allowed lowermin
(included) and uppermax
(included) bounder of generated minute values. The minutes can be between0
and59
. -
secondBetween
Set the allowed lowermin
(included) and uppermax
(included) bounder of generated second values. The minutes can be between0
and59
. -
ofPrecision
Constrain the precision of generated values. Default value: Seconds. If you don't explicitly set the precision and use min/max values with precision milliseconds/microseconds/nanoseconds, the precision of your min/max value is implicitly set.
-