java.lang.Object
org.springframework.boot.actuate.endpoint.invoke.reflect.OperationMethod
直接已知子类:
DiscoveredOperationMethod

public class OperationMethod extends Object
Information describing an operation method on an endpoint method.
从以下版本开始:
2.0.0
作者:
Phillip Webb
另请参阅:
  • 构造器详细资料

    • OperationMethod

      public OperationMethod(Method method, OperationType operationType)
      Create a new OperationMethod instance.
      参数:
      method - the source method
      operationType - the operation type
  • 方法详细资料

    • getMethod

      public Method getMethod()
      Return the source Java method.
      返回:
      the method
    • getOperationType

      public OperationType getOperationType()
      Return the operation type.
      返回:
      the operation type
    • getParameters

      public OperationParameters getParameters()
      Return the operation parameters.
      返回:
      the operation parameters
    • toString

      public String toString()
      覆盖:
      toString 在类中 Object