Package org.objenesis.instantiator.basic
Class ConstructorInstantiator<T>
java.lang.Object
org.objenesis.instantiator.basic.ConstructorInstantiator<T>
- Type Parameters:
T
- Type instantiated
- All Implemented Interfaces:
ObjectInstantiator<T>
- Direct Known Subclasses:
AccessibleInstantiator
@Instantiator(NOT_COMPLIANT)
public class ConstructorInstantiator<T>
extends Object
implements ObjectInstantiator<T>
Instantiates a class by grabbing the no args constructor and calling Constructor.newInstance().
This can deal with default public constructors, but that's about it.
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
constructor
-
-
Constructor Details
-
ConstructorInstantiator
-
-
Method Details
-
newInstance
Description copied from interface:ObjectInstantiator
Returns a new instance of an object. The returned object's class is defined by the implementation.- Specified by:
newInstance
in interfaceObjectInstantiator<T>
- Returns:
- A new instance of an object.
-