net.jqwik.api.constraints.Unique Maven / Gradle / Ivy
package net.jqwik.api.constraints;
import java.lang.annotation.*;
import org.apiguardian.api.*;
import static org.apiguardian.api.API.Status.*;
/**
* Make a generated value to be unique withing the same try.
*
*
* Applies to any embedded types of a parameter that is annotated with {@code @ForAll}.
*
*
* @see net.jqwik.api.ForAll
*/
@Target({ ElementType.ANNOTATION_TYPE, ElementType.PARAMETER, ElementType.TYPE_USE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@API(status = MAINTAINED, since = "1.0")
public @interface Unique {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy