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

com.hazelcast.org.checkerframework.checker.index.qual.LessThanUnknown Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
package com.hazelcast.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 com.hazelcast.org.checkerframework.framework.qual.DefaultQualifierInHierarchy;
import com.hazelcast.org.checkerframework.framework.qual.InvisibleQualifier;
import com.hazelcast.org.checkerframework.framework.qual.SubtypeOf;

/**
 * The top qualifier for the LessThan type hierarchy. It indicates that no other expression is known
 * to be larger than the annotated one.
 *
 * @checker_framework.manual #index-inequalities Index Chceker Inequalities
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_PARAMETER, ElementType.TYPE_USE})
@SubtypeOf({})
@DefaultQualifierInHierarchy
@InvisibleQualifier
public @interface LessThanUnknown {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy