invoke Method
Attempts to find and invoke the method matching the specified arguments Please note that this does not cache the lookup result, so if you need to call this many times you should do it manually and cache the Method to improve performance drastically
Return
The result of invoking the method
Parameters
The class holding the method
The instance of the class to invoke the method on or null to invoke static method
The name of the method
The arguments to invoke the method with. arguments [ "hello", 12 ] would match someMethod(String s, int i)
Throws
No such method found
This method is inaccessible
An exception occurred while invoking this method
Attempts to find and invoke the method matching the specified arguments Please note that this does not cache the lookup result, so if you need to call this many times you should do it manually and cache the Method to improve performance drastically
Return
The result of invoking the method
Parameters
The instance of the class to invoke the method on
The name of the method
The arguments to invoke the method with. arguments [ "hello", 12 ] would match someMethod(String s, int i)
Throws
No such method found
This method is inaccessible
An exception occurred while invoking this method