Interface ClassMatchProcessor

  • 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 ClassMatchProcessor
    The method to run when any class, interface or annotation is found in a whitelisted package on the classpath.
    • Method Detail

      • processMatch

        void processMatch​(Class<?> classRef)
        Process a class match.
        Parameters:
        classRef - The class to process.