Annotation Type Beta


@Retention(CLASS)
@Target({ANNOTATION_TYPE,CONSTRUCTOR,FIELD,METHOD,TYPE})
@Documented
@Beta
public @interface Beta
Signifies that a public API (public class, method or field) is subject to incompatible changes, or even removal, in a future release. An API bearing this annotation is exempt from any compatibility guarantees made by its containing library.
Author:
Kevin Bourrillion