public abstract @interface Size
implements Annotation
android.support.annotation.Size |
表示注释元素应具有给定的大小或长度。 请注意,“-1”表示“未设置”。 通常与数组或集合的参数或返回值一起使用。
例:
public void getLocationInWindow(@Size(2) int[] location) {
...
}
Inherited methods |
|
---|---|
From interface java.lang.annotation.Annotation
|