Package com.google.inject.matcher
Interface Matcher<T>
-
- All Known Implementing Classes:
AbstractMatcher
public interface Matcher<T>Returnstrueorfalsefor a given input.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Matcher<T>and(Matcher<? super T> other)Returns a new matcher which returnstrueif both this and the given matcher returntrue.booleanmatches(T t)Returnstrueif this matchest,falseotherwise.default Matcher<T>or(Matcher<? super T> other)Returns a new matcher which returnstrueif either this or the given matcher returntrue.
-