org.checkerframework.checker.nullness.compatqual.NonNullDecl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
JDBC client implementation over Table client, single jar
package org.checkerframework.checker.nullness.compatqual;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Identical to {@code @NonNull}, but can only be written at declaration locations. This annotation
* can be used in Java 7 code; it has no dependency on Java 8 classes.
*
* @see org.checkerframework.checker.nullness.qual.NonNull
* @checker_framework.manual #nullness-checker Nullness Checker
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
public @interface NonNullDecl {}