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

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

There is a newer version: 4.1.3
Show 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.JavaExpression;
import org.checkerframework.framework.qual.SubtypeOf;

/**
 * The annotated expression evaluates to an integer whose value is less than or equal to the lengths
 * of all the given sequences. ("LTEq" stands for "Less than or equal to".)
 *
 * 

For example, an expression with type {@code @LTLengthOf({"a", "b"})} is less than or equal to * both {@code a.length} and {@code b.length}. The sequences {@code a} and {@code b} might have * different lengths. * * @checker_framework.manual #index-checker Index Checker */ @SubtypeOf(UpperBoundUnknown.class) @Documented @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER}) public @interface LTEqLengthOf { /** Sequences, each of which is at least as long as the annotated expression's value. */ @JavaExpression public String[] value(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy