| Package | Description |
|---|---|
| edu.umd.cs.findbugs.annotations |
Annotations for FindBugs (mostly deprecated except for
SuppressFBWarnings). |
| javax.annotation |
| Modifier and Type | Class and Description |
|---|---|
interface |
CheckForNull
Deprecated.
- use
CheckForNull instead. |
interface |
NonNull
Deprecated.
- use
Nonnull instead. |
interface |
Nullable
Deprecated.
- use
Nullable instead. |
interface |
PossiblyNull
Deprecated.
- use CheckForNull instead; the name of which more clearly
indicates that not only could the value be null, but that good
coding practice requires that the value be checked for null.
|
interface |
UnknownNullness
Deprecated.
|
| Modifier and Type | Class and Description |
|---|---|
interface |
CheckForNull |
interface |
CheckForSigned
Used to annotate a value that may be either negative or nonnegative, and
indicates that uses of it should check for
negative values before using it in a way that requires the value to be
nonnegative, and check for it being nonnegative before using it in a way that
requires it to be negative.
|
interface |
Detainted |
interface |
Nullable |
interface |
RegEx
This qualifier is used to denote String values that should be a Regular
expression.
|
interface |
Signed
Used to annotate a value of unknown sign
|
interface |
Tainted |
Copyright © 2015. All rights reserved.