public static void someMethod(List < ? extends BaseDto > list) {
for (ChildDto dto : list) {
}
}
ChildDto extends BaseDto and here I'm sure its the list full of ChildDto.
I do know I can do something like this
for (TextApplicationDto dto : (List<TextApplicationDto>)list) {
but it does not look pretty.
Is there any better way of doing the casting?