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

com.carrotsearch.junitbenchmarks.annotation.AxisRange Maven / Gradle / Ivy

There is a newer version: 0.7.2
Show newest version
package com.carrotsearch.junitbenchmarks.annotation;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface AxisRange
{
    double min() default Double.NaN;
    double max() default Double.NaN;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy