程序包 | 说明 |
---|---|
com.fr.stable.collections.utils.reflect |
限定符和类型 | 方法和说明 |
---|---|
static Method |
ClassReflection.getDeclaredMethod(java.lang.Class c,
java.lang.String name,
java.lang.Class... parameterTypes)
Returns a
Method that represents the method declared by the supplied class which takes the supplied parameter types. |
static Method[] |
ClassReflection.getDeclaredMethods(java.lang.Class c)
Returns an array of
Method containing the methods declared by the class represented by the supplied Class. |
static Method |
ClassReflection.getMethod(java.lang.Class c,
java.lang.String name,
java.lang.Class... parameterTypes)
Returns a
Method that represents the public member method for the supplied class which takes the supplied parameter
types. |
static Method[] |
ClassReflection.getMethods(java.lang.Class c)
Returns an array of
Method containing the public member methods of the class represented by the supplied Class. |