Interface ClassIdentityFilter


public interface ClassIdentityFilter
A simple class filter callback that can either match or not match a class depending on its name and classloader.
Since:
3.0
Author:
Rein Raudjärv
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    matches(ClassLoader cl, String className)
     
  • Method Details

    • matches

      boolean matches(ClassLoader cl, String className)
      Parameters:
      cl - the ClassLoader class should be loaded in
      className - the class name to check
      Returns:
      true if the class matches the filter, false otherwise.