Package org.fest.reflect.constructor
Class ParameterTypes
java.lang.Object
org.fest.reflect.constructor.ParameterTypes
Understands the parameter types for the constructor to invoke.
The following is an example of proper usage of the classes in this package:
// Equivalent to call 'new Person()' Person p =constructor
().in
(Person.class).newInstance
(); // Equivalent to call 'new Person("Yoda")' Person p =constructor
().withParameterTypes
(String.class).in
(Person.class).newInstance
("Yoda");
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<T> Invoker<T>
Creates a new constructor invoker.(package private) static ParameterTypes
newParameterTypes
(Class<?>[] parameterTypes)
-
Field Details
-
parameterTypes
-
-
Constructor Details
-
ParameterTypes
-
-
Method Details
-
newParameterTypes
-
in
Creates a new constructor invoker.- Type Parameters:
T
- the generic type of the class containing the constructor to invoke.- Parameters:
target
- the the type of object that the constructor invoker will create.- Returns:
- the created constructor invoker.
-