程序包 | 说明 |
---|---|
com.fr.stable.collections.utils.reflect |
限定符和类型 | 方法和说明 |
---|---|
static Constructor |
ClassReflection.getConstructor(java.lang.Class c,
java.lang.Class... parameterTypes)
Returns a
Constructor that represents the public constructor for the supplied class which takes the supplied
parameter types. |
static Constructor[] |
ClassReflection.getConstructors(java.lang.Class c)
Returns an array of
Constructor containing the public constructors of the class represented by the supplied Class. |
static Constructor |
ClassReflection.getDeclaredConstructor(java.lang.Class c,
java.lang.Class... parameterTypes)
Returns a
Constructor that represents the constructor for the supplied class which takes the supplied parameter
types. |