I'm trying to invoke a method via reflection. The method in question, let's say
public void someMethod(someInterface<someObject> arg1)
I do not have access to someMethod
and someInterface
at runtime, and have to invoke by
someclass.getMethod("someMethod", new Class[]{Class.forName("someInterface")})
.invoke(...)
But it fails with a ClassNotFound exception for someInterface
. How do I get the Class
object for interfaces?