Interface InstanceGetter
-
- All Known Implementing Classes:
BasicUUIDGetter,ClassInfo,CoreDDFinderClassInfo,DepClassInfo,DTSClassInfo,FormatableInstanceGetter,HeapClassInfo,TypesImplInstanceGetter
public interface InstanceGetter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetNewInstance()Create an instance of a class.
-
-
-
Method Detail
-
getNewInstance
java.lang.Object getNewInstance() throws java.lang.InstantiationException, java.lang.IllegalAccessException, java.lang.reflect.InvocationTargetException, java.lang.NoSuchMethodExceptionCreate an instance of a class.- Throws:
java.lang.InstantiationException- Zero arg constructor can not be executedjava.lang.IllegalAccessException- Class or zero arg constructor is not public.java.lang.reflect.InvocationTargetException- Exception throw in zero-arg constructor.java.lang.NoSuchMethodException
-
-