Annotation Type HasSubsequence
-
@Documented @Retention(RUNTIME) @Target(FIELD) public @interface HasSubsequence
The annotated sequence contains a subsequence that is equal to the value of some other expression. This annotation permits the Upper Bound Checker to translate indices for one sequence into indices for the other sequence.Consider the following example:
The above annotations mean that the value of anclass IntSubArray { @HasSubsequence(subsequence = "this", from = "this.start", to = "this.end") int [] array; @IndexFor("array") int start; @IndexOrHigh("array") int end; }IntSubArrayobject is equal to a subsequence of itsarrayfield.These annotations imply the following relationships among
@IndexForannotations:- If
iis@IndexFor("this"), thenstart + iis@IndexFor("array"). - If
jis@IndexFor("array"), thenj - startis@IndexFor("this").
atoarray, 4 facts need to be true:startis@NonNegative.endis@LTEqLengthOf("a").startis@LessThan("end + 1").- the value of
thisequalsarray[start..end-1]
subsequencefield is equal to the given subsequence and then suppress the warning.For an example of how this annotation is used in practice, see the test GuavaPrimitives.java in /checker/tests/index/.
This annotation may only be written on fields.
- If
-
-
Element Detail
-
subsequence
@JavaExpression String subsequence
An expression that evaluates to the subsequence.
-
-
-
from
@JavaExpression String from
The index into this where the subsequence starts.
-
-
-
to
@JavaExpression String to
The index into this, immediately past where the subsequence ends.
-
-