Package org.github.jamm
Interface FieldAndClassFilter
- All Superinterfaces:
FieldFilter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Filter for fields and classes.
-
Method Summary
-
Method Details
-
ignore
Description copied from interface:FieldFilter
Checks whether aField
must be ignored or not.- Specified by:
ignore
in interfaceFieldFilter
- Parameters:
cls
- the class to which the field belong. Which might be different from the declaring class if the field is from a superclass.field
- the field to check- Returns:
true
if the field must be ignoredfalse
otherwise.
-
ignore
Checks whether aClass
must be ignored or not.- Parameters:
clazz
- the class to check- Returns:
true
if the class must be ignoredfalse
otherwise.
-