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

org.checkerframework.checker.index.qual.LessThanBottom Maven / Gradle / Ivy

The newest version!
package org.checkerframework.checker.index.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 org.checkerframework.framework.qual.SubtypeOf;

/**
 * The bottom type in the LessThan type system. Programmers should rarely write this type.
 *
 * @checker_framework.manual #index-inequalities Index Checker Inequalities
 * @checker_framework.manual #bottom-type the bottom type
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_PARAMETER, ElementType.TYPE_USE})
@SubtypeOf({LessThan.class})
public @interface LessThanBottom {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy