Interface PackageScanFilter

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface PackageScanFilter
Filter that can be used with the PackageScanClassResolver resolver.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    matches(Class<?> type)
    Does the given class match
  • Method Details

    • matches

      boolean matches(Class<?> type)
      Does the given class match
      Parameters:
      type - the class
      Returns:
      true to include this class, false to skip it.