public abstract @interface Nullable
implements Annotation
android.support.annotation.Nullable |
表示参数,字段或方法返回值可以为null。
在装饰方法调用参数时,这表示该参数可以合法地为null,并且该方法将优雅地处理它。 通常用于可选参数。
在装饰方法时,这表示方法可能合法地返回null。
这是一个标记注释,它没有特定的属性。
Inherited methods |
|
---|---|
From interface java.lang.annotation.Annotation
|