Package edu.umd.cs.findbugs.annotations
Annotation Type SuppressFBWarnings
-
@Retention(CLASS) public @interface SuppressFBWarningsUsed to suppress FindBugs warnings. It should be used instead ofSuppressWarningsto avoid conflicts withSuppressWarnings.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.StringjustificationOptional documentation of the reason why the warning is suppressedSuppressMatchTypematchTypeBy defaultSuppressFBWarningsannotations suppress bugs by prefix, for instance@SuppressFBWarnings(value = "EI_EXPO", justification = "It's OK")will suppress bugs of typeEI_EXPOSE_REPandEI_EXPOSE_REP2.java.lang.String[]valueThe set of FindBugs warnings that are to be suppressed in annotated element.
-
-
-
-
matchType
SuppressMatchType matchType
By default
SuppressFBWarningsannotations suppress bugs by prefix, for instance@SuppressFBWarnings(value = "EI_EXPO", justification = "It's OK")will suppress bugs of typeEI_EXPOSE_REPandEI_EXPOSE_REP2.You might use
@SuppressFBWarnings(value = "EI_EXPOSE_REP", justification = "It's OK", matchType=EXACT)to suppressEI_EXPOSE_REP, but notEI_EXPOSE_REP2.Regular expressions are also supported with
matchType=REGEX.- See Also:
SuppressMatchType
- Default:
- edu.umd.cs.findbugs.annotations.SuppressMatchType.DEFAULT
-
-