Package edu.umd.cs.findbugs.util
Interface TypeMatcher
- All Known Implementing Classes:
AnyTypeMatcher,SubtypeTypeMatcher
public interface TypeMatcher
Predicate for matching types.
- Author:
- David Hovemeyer
-
Method Summary
Modifier and TypeMethodDescriptionbooleanmatches(org.apache.bcel.generic.Type t) Determine whether given type matches this predicate.
-
Method Details
-
matches
boolean matches(org.apache.bcel.generic.Type t) Determine whether given type matches this predicate.- Parameters:
t- a Type- Returns:
- true if the Type matches, false otherwise
-