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

cn.nukkit.api.Since Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.api;

import java.lang.annotation.*;

/**
 * Indicates which version added the annotated element.
 */
@PowerNukkitOnly
@Retention(RetentionPolicy.CLASS)
@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.ANNOTATION_TYPE, ElementType.TYPE,
        ElementType.FIELD, ElementType.PACKAGE})
@Documented
@Inherited
public @interface Since {
    /**
     * The version which added the element.
     */
    @PowerNukkitOnly
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy