Package edu.umd.cs.findbugs.filter
Class ConfidenceMatcher
- java.lang.Object
-
- edu.umd.cs.findbugs.filter.ConfidenceMatcher
-
-
Constructor Summary
Constructors Constructor Description ConfidenceMatcher(java.lang.String confidenceAsString)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
boolean
match(BugInstance bugInstance)
Determine whether or not the given BugInstance has the feature this Matcher tests for.java.lang.String
toString()
void
writeXML(XMLOutput xmlOutput, boolean disabled)
-
-
-
Constructor Detail
-
ConfidenceMatcher
public ConfidenceMatcher(java.lang.String confidenceAsString)
Constructor.- Parameters:
confidenceAsString
- the confidence, as a String- Throws:
FilterException
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
match
public boolean match(BugInstance bugInstance)
Description copied from interface:Matcher
Determine whether or not the given BugInstance has the feature this Matcher tests for.
-
-