See: Description
Annotation Type | Description |
---|---|
CheckForNull |
The annotated method might return
null , thus code using it
should check for nullity. |
CheckReturnValue |
The return value of annotated element (method) should be checked.
|
NonNull |
The annotated element must not be
null . |
NullAllowed |
The annotated element might be
null , thus code using it
should check for nullity. |
NullUnknown |
The annotated element might be
null under certain
defined circumstances. |
StaticResource |
Marker for a constant representing a static resource.
|
SuppressWarnings |
Suppress the warning reported by the code analyzing tool.
|
Annotations are respected (and so annotated elements may be checked) by the FindBugs tool.