All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.lang.reflect.Constructor Maven / Gradle / Ivy

The newest version!
package java.lang.reflect;

public final class Constructor extends AccessibleObject implements Member {
    public boolean equals(Object obj) {
        return false;
    }

    public Class getDeclaringClass() {
        return null;
    }

    public Class[] getExceptionTypes() {
        return null;
    }

    public int getModifiers() {
        return 0;
    }

    public String getName() {
        return null;
    }

    public Class[] getParameterTypes() {
        return null;
    }

    public int hashCode() {
        return 0;
    }

    /**
     * @throws InstantiationException
     * @throws IllegalAccessException
     * @throws IllegalArgumentException
     * @throws InvocationTargetException
     * @throws ExceptionInInitializerError
     */
    public Object newInstance(Object[] initargs) throws InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
        return null;
    }

    public String toString() {
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy