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

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

The newest version!
package net.jqwik.api.constraints;

import java.lang.annotation.*;

import org.apiguardian.api.*;

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

/**
 * Constrain the range of a generated float or Float parameters.
 *
 * Applies to float or Float parameters which are also annotated with {@code @ForAll}.
 *
 * @see net.jqwik.api.ForAll
 * @see ByteRange
 * @see ShortRange
 * @see IntRange
 * @see LongRange
 * @see DoubleRange
 * @see BigRange
 */
@Target({ ElementType.ANNOTATION_TYPE, ElementType.PARAMETER, ElementType.TYPE_USE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@API(status = MAINTAINED, since = "1.0")
public @interface FloatRange {
	float min() default 0.0f;

	boolean minIncluded() default true;

	float max() default Float.MAX_VALUE;

	boolean maxIncluded() default true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy