Interface Filter
-
public interface FilterA filter to be used when invokingClassHierarchyHelper.getHierarchy(Class, Filter...).- Author:
- Gunnar Morling
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanaccepts(Class<?> clazz)Whether the given class is accepted by this filter or not.
-
-
-
Method Detail
-
accepts
boolean accepts(Class<?> clazz)
Whether the given class is accepted by this filter or not.- Parameters:
clazz- the class of interest- Returns:
trueif this filter accepts the given class (meaning it will be contained in the result ofClassHierarchyHelper.getHierarchy(Class, Filter...),falseotherwise.
-
-