@API(status=EXPERIMENTAL,
     since="1.5.4")
public interface InstantArbitrary
extends Arbitrary<java.time.Instant>
Arbitrary.ArbitraryFacade| Modifier and Type | Method and Description | 
|---|---|
| InstantArbitrary | atTheEarliest(java.time.Instant min)Set the allowed lower  min(included) bounder of generated instant values. | 
| InstantArbitrary | atTheLatest(java.time.Instant max)Set the allowed upper  max(included) bounder of generated instant values. | 
| default InstantArbitrary | between(java.time.Instant min,
       java.time.Instant max)Set the allowed lower  min(included) and uppermax(included) bounder of generated instant values. | 
| InstantArbitrary | dateBetween(java.time.LocalDate min,
           java.time.LocalDate max)Set the allowed lower  min(included) and uppermax(included) bounder of generated local date values. | 
| InstantArbitrary | dayOfMonthBetween(int min,
                 int max)Set the allowed lower  min(included) and uppermax(included) bounder of generated day of month values. | 
| InstantArbitrary | hourBetween(int min,
           int max)Set the allowed lower  min(included) and uppermax(included) bounder of generated hour values. | 
| InstantArbitrary | minuteBetween(int min,
             int max)Set the allowed lower  min(included) and uppermax(included) bounder of generated minute values. | 
| default InstantArbitrary | monthBetween(int min,
            int max)Set the allowed lower  min(included) and uppermax(included) bounder of generated month values. | 
| InstantArbitrary | monthBetween(java.time.Month min,
            java.time.Month max)Set the allowed lower  min(included) and uppermax(included) bounder of generated month values. | 
| InstantArbitrary | ofPrecision(java.time.temporal.ChronoUnit ofPrecision)Constrain the precision of generated values. | 
| InstantArbitrary | onlyDaysOfWeek(java.time.DayOfWeek... daysOfWeek)Set an array of allowed  daysOfWeek. | 
| InstantArbitrary | onlyMonths(java.time.Month... months)Set an array of allowed  months. | 
| InstantArbitrary | secondBetween(int min,
             int max)Set the allowed lower  min(included) and uppermax(included) bounder of generated second values. | 
| InstantArbitrary | timeBetween(java.time.LocalTime min,
           java.time.LocalTime max)Set the allowed lower  min(included) and uppermax(included) bounder of generated local time values. | 
| default InstantArbitrary | yearBetween(int min,
           int max)Set the allowed lower  min(included) and uppermax(included) bounder of generated year values. | 
| InstantArbitrary | yearBetween(java.time.Year min,
           java.time.Year max)Set the allowed lower  min(included) and uppermax(included) bounder of generated year values. | 
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, withoutEdgeCasesdefault InstantArbitrary between(java.time.Instant min, java.time.Instant max)
min (included) and upper max (included) bounder of generated instant 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.InstantArbitrary atTheEarliest(java.time.Instant min)
min (included) bounder of generated instant 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.InstantArbitrary atTheLatest(java.time.Instant max)
max (included) bounder of generated instant 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.InstantArbitrary dateBetween(java.time.LocalDate min, java.time.LocalDate max)
min (included) and upper max (included) bounder of generated local date values.InstantArbitrary yearBetween(java.time.Year min, java.time.Year max)
min (included) and upper max (included) bounder of generated year values.
 The years can be between 1 and Year.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.
default InstantArbitrary yearBetween(int min, int max)
min (included) and upper max (included) bounder of generated year values.
 The int values can be between 1 and Year.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.
InstantArbitrary monthBetween(java.time.Month min, java.time.Month max)
min (included) and upper max (included) bounder of generated month values.default InstantArbitrary monthBetween(int min, int max)
min (included) and upper max (included) bounder of generated month values.
 The int values can be between 1 and 12.InstantArbitrary onlyMonths(java.time.Month... months)
months.InstantArbitrary dayOfMonthBetween(int min, int max)
min (included) and upper max (included) bounder of generated day of month values.
 The int values can be between 1 and 31.InstantArbitrary onlyDaysOfWeek(java.time.DayOfWeek... daysOfWeek)
daysOfWeek.InstantArbitrary timeBetween(java.time.LocalTime min, java.time.LocalTime max)
min (included) and upper max (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.InstantArbitrary hourBetween(int min, int max)
min (included) and upper max (included) bounder of generated hour values.
 The hours can be between 0 and 23.InstantArbitrary minuteBetween(int min, int max)
min (included) and upper max (included) bounder of generated minute values.
 The minutes can be between 0 and 59.InstantArbitrary secondBetween(int min, int max)
min (included) and upper max (included) bounder of generated second values.
 The minutes can be between 0 and 59.InstantArbitrary ofPrecision(java.time.temporal.ChronoUnit ofPrecision)