接口 FixedValue

所有超级接口:
Callback
函数接口:
这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。

@FunctionalInterface public interface FixedValue extends Callback
Enhancer callback that simply returns the value to return from the proxied method. No information about what method is being called is available to the callback, and the type of the returned object must be compatible with the return type of the proxied method. This makes this callback primarily useful for forcing a particular method (through the use of a CallbackFilter to return a fixed value with little overhead.
  • 方法概要

    修饰符和类型
    方法
    说明
    Return the object which the original method invocation should return.
  • 方法详细资料

    • loadObject

      Object loadObject() throws Exception
      Return the object which the original method invocation should return. This method is called for every method invocation.
      返回:
      an object matching the type of the return value for every method this callback is mapped to
      抛出:
      Exception