com.github.mictaege.jitter.api.OnlyIf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jitter-api Show documentation
Show all versions of jitter-api Show documentation
This repository contains the _jitter_ API. For using _jitter_ see the https://github.com/mictaege/jitter_plugin documentation.
package com.github.mictaege.jitter.api;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PACKAGE;
import static java.lang.annotation.ElementType.TYPE;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({PACKAGE, TYPE, FIELD, CONSTRUCTOR, METHOD})
public @interface OnlyIf {
String[] value();
}