Open In App

Class getDeclaredMethod() method in Java with Examples

The getDeclaredMethod() method of java.lang.Class class is used to get the specified method of this class with the specified parameter type. The method returns the specified method of this class in the form of Method object.

Syntax:



public Method getDeclaredMethod(String methodName, 
                            Class[] parameterType)
       throws NoSuchMethodException, SecurityException

Parameter: This method accepts two parameters:

Return Value: This method returns the specified method of this class in the form of Method objects.



Exception This method throws:

Article Tags :