Uses of Class
edu.umd.cs.findbugs.annotations.SuppressMatchType
-
Packages that use SuppressMatchType Package Description edu.umd.cs.findbugs Main package for the FindBugs application - contains the engine class (FindBugs
), the object model classes for bug instances (BugInstance
,BugAnnotation
), and other miscellany.edu.umd.cs.findbugs.annotations Annotations for FindBugs (mostly deprecated except forSuppressFBWarnings
).edu.umd.cs.findbugs.detect -
-
Uses of SuppressMatchType in edu.umd.cs.findbugs
Fields in edu.umd.cs.findbugs declared as SuppressMatchType Modifier and Type Field Description protected SuppressMatchType
WarningSuppressor. matchType
Constructors in edu.umd.cs.findbugs with parameters of type SuppressMatchType Constructor Description ClassWarningSuppressor(java.lang.String bugPattern, SuppressMatchType matchType, ClassAnnotation clazz)
FieldWarningSuppressor(java.lang.String bugPattern, SuppressMatchType matchType, ClassAnnotation clazz, FieldAnnotation field)
MethodWarningSuppressor(java.lang.String bugPattern, SuppressMatchType matchType, ClassAnnotation clazz, MethodAnnotation method, boolean syntheticMethod)
PackageWarningSuppressor(java.lang.String bugPattern, SuppressMatchType matchType, java.lang.String packageName)
ParameterWarningSuppressor(java.lang.String bugPattern, SuppressMatchType matchType, ClassAnnotation clazz, MethodAnnotation method, int register)
WarningSuppressor(java.lang.String bugPattern, SuppressMatchType matchType)
-
Uses of SuppressMatchType in edu.umd.cs.findbugs.annotations
Methods in edu.umd.cs.findbugs.annotations that return SuppressMatchType Modifier and Type Method Description SuppressMatchType
matchType()
By defaultSuppressFBWarnings
annotations suppress bugs by prefix, for instance@SuppressFBWarnings(value = "EI_EXPO", justification = "It's OK")
will suppress bugs of typeEI_EXPOSE_REP
andEI_EXPOSE_REP2
.static SuppressMatchType
SuppressMatchType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SuppressMatchType[]
SuppressMatchType. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of SuppressMatchType in edu.umd.cs.findbugs.detect
Methods in edu.umd.cs.findbugs.detect with parameters of type SuppressMatchType Modifier and Type Method Description private void
NoteSuppressedWarnings. suppressWarning(int parameter, java.lang.String pattern, SuppressMatchType matchType)
private void
NoteSuppressedWarnings. suppressWarning(java.lang.String pattern, SuppressMatchType matchType)
-