In normal array list initialization, We used to define generic type as follows,
List list1 = new ArrayList();
B
You can simply do
List> l = new ArrayList>();
If you need an array of Lists, you can do
List[] l = new List[n];
and safely ignore or suppress the warning.