@FunctionalInterface public interface FieldAndClassFilter extends FieldFilter
| Modifier and Type | Method and Description |
|---|---|
boolean |
ignore(Class<?> clazz)
Checks whether a
Class must be ignored or not. |
default boolean |
ignore(Class<?> cls,
Field field)
Checks whether a
Field must be ignored or not. |
default boolean ignore(Class<?> cls, Field field)
FieldFilterField must be ignored or not.ignore in interface FieldFiltercls - 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 checktrue if the field must be ignored false otherwise.boolean ignore(Class<?> clazz)
Class must be ignored or not.clazz - the class to checktrue if the class must be ignored false otherwise.Copyright © 2023. All rights reserved.