Method getParameterTypes()
Return type:
java.lang.Class
<Class<?>[]>[]
Member of:
java.lang.reflect.Constructor
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
((Constructor) m).getParameterTypes();
2
: ((Constructor)entry).getParameterTypes();
3
return convertClasses(con.getParameterTypes());
4
aConstructor.getParameterTypes(), void.class);
5
Class[] paramClasses = constructor.getParameterTypes();
6
Class[] paramClasses = constructor.getParameterTypes();
7
Class[] params = constructors[i].getParameterTypes();
8
Class[] params = constructors[i].getParameterTypes();
9
if (cs[i].getParameterTypes().length == 0) {
10
while (i
11
Class[] params = constructor.getParameterTypes();
12
parameters = ( ( Constructor ) accessibleObject ).getParameterTypes();
13
String sig = getSignature(ctors[i], ctors[i].getParameterTypes());
14
Class[] types = c.getParameterTypes();
15
params = ((Constructor)method).getParameterTypes();
16
Class [] pt = ctors[i].getParameterTypes();
17
Class[] parT = cs [i].getParameterTypes ();
18
Class[] paramArray = constructorArray[m].getParameterTypes();
19
realP = c.getParameterTypes();
20
if (theConstructor.getParameterTypes().length == 0)
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.