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 java.lang.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:
ObjectInstantiator
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.reflect.Constructor<T>
constructor
-
Constructor Summary
Constructors Constructor Description ConstructorInstantiator(java.lang.Class<T> type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
newInstance()
Returns a new instance of an object.
-
-
-
Field Detail
-
constructor
protected java.lang.reflect.Constructor<T> constructor
-
-
Constructor Detail
-
ConstructorInstantiator
public ConstructorInstantiator(java.lang.Class<T> type)
-
-
Method Detail
-
newInstance
public T 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.
-
-