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

com.signalfx.shaded.checkerframework.common.reflection.qual.ClassValBottom Maven / Gradle / Ivy

There is a newer version: 1.0.41
Show newest version
package com.signalfx.shaded.checkerframework.common.reflection.qual;

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;
import com.signalfx.shaded.checkerframework.framework.qual.InvisibleQualifier;
import com.signalfx.shaded.checkerframework.framework.qual.SubtypeOf;
import com.signalfx.shaded.checkerframework.framework.qual.TargetLocations;
import com.signalfx.shaded.checkerframework.framework.qual.TypeUseLocation;

/**
 * The bottom type in the ClassVal type system. Programmers should rarely write this type.
 *
 * @checker_framework.manual #methodval-and-classval-checkers ClassVal Checker
 * @checker_framework.manual #bottom-type the bottom type
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
@TargetLocations({TypeUseLocation.EXPLICIT_LOWER_BOUND, TypeUseLocation.EXPLICIT_UPPER_BOUND})
@InvisibleQualifier
@SubtypeOf({ClassVal.class, ClassBound.class})
public @interface ClassValBottom {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy