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

net.jqwik.api.From Maven / Gradle / Ivy

There is a newer version: 1.9.2
Show newest version
package net.jqwik.api;

import java.lang.annotation.*;

import org.apiguardian.api.*;

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

/**
 * Used to annotate type parameters within property parameters annotated with {@linkplain ForAll} .
 *
 * {@code value} is used as reference name to a method annotated with {@code @Provide}.
 * If it is not specified, only default providers are considered.
 *
 * @see ForAll
 * @see Provide
 */
@Target({ ElementType.ANNOTATION_TYPE, ElementType.PARAMETER, ElementType.TYPE_USE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@API(status = MAINTAINED, since = "1.3.0")
public @interface From {
	String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy