@SubtypeOf(value=LTLengthOf.class) @Retention(value=RUNTIME) @Target(value={TYPE_USE,TYPE_PARAMETER}) public @interface LTOMLengthOf
For example, an expression with type @LTLengthOf({"a", "b"})
is less than or equal to
both a.length-2
and b.length-2
. Equivalently, it is less than both a.length-1
and b.length-1
. The sequences a
and b
might have different
lengths.
In the annotation's name, "LTOM" sndands for "less than one minus".
Modifier and Type | Required Element and Description |
---|---|
java.lang.String[] |
value
Sequences, each of whose lengths is at least 1 larger than the annotated expression's value.
|