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

org.infinispan.commons.util.Experimental Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.commons.util;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * An experimental user-facing API. Elements annotated with this annotation
 * are experimental and may get removed from the distribution at any time.
 *
 * @since 8.0
 */
@Retention(RUNTIME)
@Target({TYPE, METHOD, FIELD, PACKAGE, CONSTRUCTOR, LOCAL_VARIABLE, PARAMETER})
public @interface Experimental {
   String comment() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy