Java org.springframework.util MethodInvoker fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.util MethodInvoker fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.util MethodInvoker.

The text is from its open source code.

Subclass

org.springframework.util.MethodInvoker has subclasses.
Click this link to see all its subclasses.

Constructor

Method

MethodgetPreparedMethod()
Return the prepared Method object that will be invoked.
ClassgetTargetClass()
Return the target class on which to call the target method.
StringgetTargetMethod()
Return the name of the method to be invoked.
ObjectgetTargetObject()
Return the target object on which to call the target method.
Objectinvoke()
Invoke the specified method.
voidprepare()
Prepare the specified method.
voidsetArguments(Object... arguments)
Set arguments for the method invocation.
voidsetStaticMethod(String staticMethod)
Set a fully qualified static method name to invoke, e.g.
voidsetTargetClass(@Nullable Class targetClass)
Set the target class on which to call the target method.
voidsetTargetMethod(@Nullable String targetMethod)
Set the name of the method to be invoked.
voidsetTargetObject(@Nullable Object targetObject)
Set the target object on which to call the target method.