package org.bukkit; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.jetbrains.annotations.ApiStatus; /** * Indicates that the annotated element (class, method, field, etc.) is part of a * minecraft experimental feature * and is subject to changes by Mojang. *

* Note: Elements marked with this annotation require the use of a datapack or otherwise * non-standard feature to be enabled on the server. * * @see Features Toggles - Minecraft Article */ @Documented @Retention(RetentionPolicy.CLASS) @Target({ ElementType.TYPE, ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.PACKAGE }) @ApiStatus.Internal public @interface MinecraftExperimental { }