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

tech.ydb.yoj.ExperimentalApi Maven / Gradle / Ivy

Go to download

Core data-binding logic used by YOJ (YDB ORM for Java) to convert between Java objects and database rows (or anything representable by a Java Map, really).

The newest version!
package tech.ydb.yoj;

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

import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.SOURCE;

/**
 * Annotates experimental features. These features are not part of the stable YOJ API: they can change incompatibly,
 * or even disappear entirely in any release.
 */
@Target({TYPE, FIELD, METHOD, PARAMETER, ANNOTATION_TYPE})
@Retention(SOURCE)
public @interface ExperimentalApi {
    /**
     * @return URL of the GitHub issue tracking the experimental API
     */
    String issue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy