Package io.github.classgraph
Interface FieldInfoList.FieldInfoFilter
-
- Enclosing class:
- FieldInfoList
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface FieldInfoList.FieldInfoFilterFilter anFieldInfoListusing a predicate mapping anFieldInfoobject to a boolean, producing anotherFieldInfoListfor all items in the list for which the predicate is true.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanaccept(FieldInfo fieldInfo)Whether or not to allow anFieldInfolist item through the filter.
-
-
-
Method Detail
-
accept
boolean accept(FieldInfo fieldInfo)
Whether or not to allow anFieldInfolist item through the filter.- Parameters:
fieldInfo- TheFieldInfoitem to filter.- Returns:
- Whether or not to allow the item through the filter. If true, the item is copied to the output list; if false, it is excluded.
-
-