类 MethodClassKey

java.lang.Object
cn.taketoday.util.MethodClassKey
所有已实现的接口:
Comparable<MethodClassKey>

public final class MethodClassKey extends Object implements Comparable<MethodClassKey>
A common key class for a method against a specific target class, including toString() representation and Comparable support (as suggested for custom HashMap keys as of Java 8).
从以下版本开始:
4.0
作者:
Juergen Hoeller, TODAY 2021/9/11 18:11
  • 构造器详细资料

    • MethodClassKey

      public MethodClassKey(Method method, @Nullable Class<?> targetClass)
      Create a key object for the given method and target class.
      参数:
      method - the method to wrap (must not be null)
      targetClass - the target class that the method will be invoked on (may be null if identical to the declaring class)
  • 方法详细资料