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

com.github.dreamhead.bot.annotation.BooleanField Maven / Gradle / Ivy

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 = BooleanFields.class)
public @interface BooleanField {
    String name();
    boolean value();
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy