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

org.hibernate.search.util.common.annotation.Incubating Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright Red Hat Inc. and Hibernate Authors
 */
package org.hibernate.search.util.common.annotation;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.CLASS;

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

/**
 * Marks the annotated element as incubating.
 * 

* Incubating features are still under active development. * The usual compatibility policy does not apply: * the contract of incubating elements (e.g. types, methods etc.) * may be altered in a backward-incompatible way -- or even removed -- in subsequent releases. *

* You are encouraged to use incubating features so the development team can get feedback and improve them, * but you should be prepared to update code which relies on them as needed. * * @author Gunnar Morling */ @Documented @Target({ TYPE, METHOD, FIELD }) @Retention(CLASS) public @interface Incubating { }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy