public interface Filter
A filter to be used when invoking ClassHierarchyHelper.getHierarchy(Class, Filter...).
Author:
Gunnar Morling
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    accepts(Class<?> clazz)
    Whether the given class is accepted by this filter or not.
  • Method Details

    • accepts

      boolean accepts(Class<?> clazz)
      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 of ClassHierarchyHelper.getHierarchy(Class, Filter...), false otherwise.