Interface ReflectionUtils.MethodFilter

Enclosing class:
ReflectionUtils
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 static interface ReflectionUtils.MethodFilter
Callback optionally used to filter methods to be operated on by a method callback.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    matches(Method method)
    Determine whether the given method matches.
  • Method Details

    • matches

      boolean matches(Method method)
      Determine whether the given method matches.
      Parameters:
      method - the method to check