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

graphql.ExperimentalApi Maven / Gradle / Ivy

package graphql;

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

import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;

/**
 * This represents code that the graphql-java project considers experimental API and may not be stable between
 * releases.
 *
 * In general unnecessary changes will be avoided and the code is aiming to be public one day but you should be aware that things
 * might change.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(value = {CONSTRUCTOR, METHOD, TYPE, FIELD})
@Documented
public @interface ExperimentalApi {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy