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

org.checkerframework.checker.nullness.compatqual.NonNullType Maven / Gradle / Ivy

There is a newer version: 1.15.4
Show newest version
package org.checkerframework.checker.nullness.compatqual;

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

/**
 * Identical to {@code @NonNull}. It appears in the same package as {@code @NonNullDecl}, so it is
 * convenient to import both.
 *
 * @see org.checkerframework.checker.nullness.qual.NonNull
 * @checker_framework.manual #nullness-checker Nullness Checker
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
public @interface NonNullType {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy