com.github.dreamhead.bot.annotation.DoubleField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bot-core Show documentation
Show all versions of bot-core Show documentation
Object bot is a library for setting up Java objects as test data.
The newest version!
package com.github.dreamhead.bot.annotation;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Target(FIELD)
@Retention(RUNTIME)
@Repeatable(value = DoubleFields.class)
public @interface DoubleField {
String name();
double value();
}