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

think.rpgitems.power.AcceptedValue Maven / Gradle / Ivy

There is a newer version: 3.12.2
Show newest version
package think.rpgitems.power;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface AcceptedValue {
    String[] value() default {};

    Preset preset() default Preset.NONE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy