@Target(value={TYPE_USE,TYPE_PARAMETER})
public @interface IndexOrHigh
The 
 Arrays.binarySearch method is declared as
 
 class Arrays {
   int binarySearch(Object[] a, @IndexFor("#1") int fromIndex, @IndexOrHigh("#1") int toIndex, Object key)
 }
 
 Writing @IndexOrHigh("arr") is equivalent to writing @NonNegative
 @LTEqLengthOf("arr"), and that is how it is treated internally by the
 checker. Thus, if you write an @IndexFor("arr") annotation, you might see warnings about
 @NonNegative or @LTEqLengthOf.
NonNegative, 
LTLengthOf| Modifier and Type | Required Element and Description | 
|---|---|
java.lang.String[] | 
value
Sequences that the annotated expression is a valid index for or is equal to the lengeth of. 
 |