Interface Filter
public interface Filter
A filter to be used when invoking
ClassHierarchyHelper.getHierarchy(Class, Filter...)
.- Author:
- Gunnar Morling
-
Method Summary
-
Method Details
-
accepts
Whether the given class is accepted by this filter or not.- Parameters:
clazz
- the class of interest- Returns:
true
if this filter accepts the given class (meaning it will be contained in the result ofClassHierarchyHelper.getHierarchy(Class, Filter...)
,false
otherwise.
-