Здравствуйте!
Есть такие классы:
Item{};
Category extends Item{};
Product extends Item{}.
Есть такие коллекции:
List<Item> items;
List<Category> categories;
List<Product> products.
Возможно ли как то привести categories к items или products к items?
что то типа
List <Item> = List <category>
?