Constructor Members

Constructor Members

Class Overview | This Package | All Packages

Methods
Name Description
equals(Object) Compares this Constructor against the specified object.
getDeclaringClass() Returns the Class object representing the class that declares the constructor represented by this Constructor object.
getExceptionTypes() Returns an array of Class objects that represent the types of the checked exceptions thrown by the underlying constructor represented by this Constructor object.
getModifiers() Returns the Java language modifiers for the constructor represented by this Constructor object, as an integer.
getName() Returns the name of this constructor, as a string.
getParameterTypes() Returns an array of Class objects that represent the formal parameter types, in declaration order, of the constructor represented by this Constructor object.
hashCode() Returns a hashcode for this Constructor.
newInstance(Object[]) Uses the constructor represented by this Constructor object to create and initialize a new instance of the constructor's declaring class, with the specified initialization parameters.
toString() Return a string describing this Constructor.