Package | Description |
---|---|
java.lang |
Modifier and Type | Method and Description |
---|---|
Constructor |
Class.getConstructor(Class[] parameterTypes)
Get this Class's public constructor with the given parameter types.
|
Constructor |
Class.getDeclaredConstructor(Class[] parameterTypes)
Get this Class's declared constructor with the given parameter types.
|
Method |
Class.getDeclaredMethod(String methodname,
Class[] parameterTypes)
Get this Class's public method with the given name and parameter types.
|
Method |
Class.getMethod(String methodname,
Class[] parameterTypes)
Get this Class's public method with the given name and parameter types.
|