getDeclaredConstructorClass
DeclaredConstructorClass is a Java concept related to reflection and class loading. It refers to a specific constructor within a class that has been explicitly declared. When using Java's reflection API, you can obtain a reference to a class and then access its constructors. The getDeclaredConstructor() method of the java.lang.Class class allows you to retrieve a Constructor object representing a particular constructor of the class.
This method takes an array of Class objects as arguments, specifying the parameter types of the constructor
Once you have a Constructor object obtained through getDeclaredConstructor(), you can then use its newInstance() method