I want to create an array of Classes, each representing a type that is available in the system I'm building. All the Classes involved are subclasses of a common superclass. So I'd like to do:
Class<? extends SuperClass>[] availableTypes = { SubClass1.class, SubClass2.class };
This gives me the error:
Cannot create a generic array of Class<? extends SuperClass>.
I get the same message if I try to qualify the creation of the array on the right hand side of the initialization:
Class<? extends SuperClass>[] availableTypes = Class<? extends SuperClass>[] { SubClass1.class, SubClass2.class };
I can get the code to compile if I eliminate the generics qualifications:
Class[] availableTypes = { SubClass1.class, SubClass2.class };
But then I get the generics warning:
Class is a raw type. References to generic type Class should be parameterized.
I'm trying; I'm trying! :) Also, at this point, even if this didn't provoke a warning, I lose a piece of the interface I was trying to define. I don't want to just return an array of arbitrary classes; I want to return an array of classes that are all subclasses of a particular SuperClass!
Eclipse has some pretty powerful tools for figuring out what parameters to use to fix generics declarations, but in this case it falls down, as it tends to do when you deal with Class. The "Infer Generic Type Arguments" procedure it offers doesn't change the code at all, leaving the warning.
I was able to work around this by using a Collection instead:
List<Class<? extends SuperClass>> availableTypes = new List<Class<? extends SuperClass>>();
But what's the right way to do this with arrays?