org.drools.objenesis.instantiator.basic |
|
Java Source File Name | Type | Comment |
AccessibleInstantiator.java | Class | Instantiates a class by grabbing the no-args constructor, making it accessible and then calling
Constructor.newInstance(). |
ConstructorInstantiator.java | Class | Instantiates a class by grabbing the no args constructor and calling Constructor.newInstance(). |
NewInstanceInstantiator.java | Class | The simplest instantiator - simply calls Class.newInstance(). |
ObjectInputStreamInstantiator.java | Class | Instantiates a class by using a dummy input stream that always feeds data for an empty object of
the same kind. |
ObjectStreamClassInstantiator.java | Class | Instantiates a class by using reflection to make a call to private method
ObjectStreamClass.newInstance, present in many JVM implementations. |