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