Yes indeed! You can use Class.getDeclaredMethodto search for an object Methodwith the name and types of parameters. For example, to find your method someMethodThatTakesParams, you can write
Method m = ListClients.class.getDeclaredMethod("someMethodThatTakesParams", ArgType1.class, ArgType2.class);
Here ArgType1and ArgType2are the types of arguments.
Once you have a method, you can call it like this:
m.invoke(null, arg1, arg2);
arg1 arg2 - , . , invoke null, .
, , , , , , , , .