What is the parameterized type of this Constructor in Java reflection?
java.lang.reflect.Constructor[] constructors = Stock.class.getDeclaredConstructors();
I've tried Constructor<Stock>[]
, Constructor<Stock.class>[]
, and Constructor<Class>[]
.