All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.jqwik.time.api.constraints.InstantRange Maven / Gradle / Ivy

package net.jqwik.time.api.constraints;

import java.lang.annotation.*;
import java.time.format.*;

import org.apiguardian.api.*;

import static org.apiguardian.api.API.Status.*;

/**
 * Constrain the range of generated instant parameters.
 * Only strings of format {@linkplain DateTimeFormatter#ISO_INSTANT} are supported.
 * 

* Applies to Instant parameters which are also annotated with {@code @ForAll}. * * @see net.jqwik.api.ForAll */ @Target({ElementType.ANNOTATION_TYPE, ElementType.PARAMETER, ElementType.TYPE_USE}) @Retention(RetentionPolicy.RUNTIME) @Documented @API(status = EXPERIMENTAL, since = "1.5.4") public @interface InstantRange { String min() default "1900-01-01T00:00:00Z"; String max() default "2500-12-31T23:59:59.0Z"; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy