Searched defs:getDeclaredConstructors (Results 1 - 1 of 1) sorted by relevance

/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DClass.java477 return getMatchingConstructor(getDeclaredConstructors(this, true), parameterTypes);
491 * @see #getDeclaredConstructors()
499 return getDeclaredConstructors(this, true);
592 return getMatchingConstructor(getDeclaredConstructors(this, false), parameterTypes);
609 public Constructor[] getDeclaredConstructors() throws SecurityException { method in class:Class
615 return getDeclaredConstructors(this, false);
626 private static native <T> Constructor<T>[] getDeclaredConstructors(Class<T> clazz, boolean publicOnly); method in class:Class

Completed in 16 milliseconds