Package com.chemaxon.common.annotations
Annotation Interface Beta
@Documented
@Target({ANNOTATION_TYPE,CONSTRUCTOR,FIELD,METHOD,TYPE})
@Retention(RUNTIME)
@PublicApi
public @interface Beta
Indicates that a public API entity (public class, method, or field) is subject to incompatible changes,
or even removal, in a future release.
The presence of this annotation implies nothing about the quality or performance of the annotated entity, only the fact that it is not "API-frozen." That is, it is exempt from any compatibility guarantees for the future.
This annotation is based on com.google.common.annotations.Beta
of the guava library.
- See Also: