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.getConstructors()
Return an array containing all this Class's public constructors.
|
Constructor |
Class.getDeclaredConstructor(Class[] parameterTypes)
Get this Class's declared constructor with the given parameter types.
|
Constructor[] |
Class.getDeclaredConstructors()
Return an array containing all this Class's declared constructors.
|