Is is possible to create an instance of a parameterized class with a string based parameter like this :
String aType = "MyType";
AFoobarType<aType> aClassInstance = new AFoobarType<aType>(){
};
Thank you.
Is is possible to create an instance of a parameterized class with a string based parameter like this :
String aType = "MyType";
AFoobarType<aType> aClassInstance = new AFoobarType<aType>(){
};
Thank you.