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 Details

  • Constructor Details

    • ConstructorInstantiator

      public ConstructorInstantiator(Class<T> type)
  • Method Details

    • 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 interface ObjectInstantiator<T>
      Returns:
      A new instance of an object.