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. |
| SuppressWarnings |
Supress the warning reported by the code analyzing tool.
|
Annotations are respected (and so annotated elements may be checked) by FindBugs tool.
Built on August 24 2014. | Portions Copyright 1997-2014 Sun Microsystems, Inc. All rights reserved.