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

net.jqwik.api.constraints.Unique Maven / Gradle / Ivy

There is a newer version: 1.9.2
Show newest version
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