Package edu.umd.cs.findbugs.util
Class AnyTypeMatcher
- java.lang.Object
-
- edu.umd.cs.findbugs.util.AnyTypeMatcher
-
- All Implemented Interfaces:
TypeMatcher
public class AnyTypeMatcher extends java.lang.Object implements TypeMatcher
A TypeMatcher that matches all types.- Author:
- David Hovemeyer
-
-
Constructor Summary
Constructors Constructor Description AnyTypeMatcher()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanmatches(org.apache.bcel.generic.Type t)Determine whether given type matches this predicate.java.lang.StringtoString()
-
-
-
Method Detail
-
matches
public boolean matches(org.apache.bcel.generic.Type t)
Description copied from interface:TypeMatcherDetermine whether given type matches this predicate.- Specified by:
matchesin interfaceTypeMatcher- Parameters:
t- a Type- Returns:
- true if the Type matches, false otherwise
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-