com.github.dreamhead.bot.annotation.IntFields 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.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface IntFields {
IntField[] value() default {};
}