Interface IClassFilter


  • public interface IClassFilter
    A filter for Class.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean accept​(java.lang.Class<?> clazz)
      Tests whether or not the specified clazz should be included.
      boolean accept​(java.lang.String fullyQualifiedClassName)
      Returns true if the specified class is accepted.
    • Method Detail

      • accept

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

        boolean accept​(java.lang.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.