Constructor
provides information about, and access to, a single constructor for a class. Constructor
permits widening conversions to occur when matching the actual parameters to newInstance() with the underlying constructor's formal parameters, but throws an IllegalArgumentException
if a narrowing conversion would occur.
@param < T> the class in which the constructor is declared
@see Member
@see java.lang.Class
@see java.lang.Class#getConstructors()
@see java.lang.Class#getConstructor(Class[])
@see java.lang.Class#getDeclaredConstructors()
@author Kenneth Russell
@author Nakul Saraiya
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|