@FunctionalInterface public static interface ReflectionUtils.MethodFilter
| Modifier and Type | Method and Description |
|---|---|
default ReflectionUtils.MethodFilter |
and(ReflectionUtils.MethodFilter next)
Create a composite filter based on this filter and the provided filter.
|
boolean |
matches(Method method)
Determine whether the given method matches.
|
boolean matches(Method method)
method - the method to checkdefault ReflectionUtils.MethodFilter and(ReflectionUtils.MethodFilter next)
If this filter does not match, the next filter will not be applied.
next - the next MethodFilterMethodFilterIllegalArgumentException - if the MethodFilter argument is null