com.github.mictaege.jitter.api.Alternatives 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.TYPE;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(TYPE)
public @interface Alternatives {
Alter[] value();
}