Interface IClassFilter


public interface IClassFilter
A filter for Class.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    accept(Class<?> clazz)
    Tests whether or not the specified clazz should be included.
    boolean
    accept(String fullyQualifiedClassName)
    Returns true if the specified class is accepted.
  • Method Details

    • accept

      boolean accept(Class<?> clazz)
      Tests whether or not the specified clazz should be included.
    • accept

      boolean accept(String fullyQualifiedClassName)
      Returns true if the specified class is accepted. This method is call before accept(Class). It should return false if the class can not be loaded. If true is returned also accept(Class) will be invoked which will give the definite answer.