I have a generic class Position and a concrete class Card. How do I create an array of type Position?
Position
Card
I tried
Use the raw type to create the array:
Position<String>[] suitPositions = new Position[5];