void loadValuesFromDB(List<? super Number> targetList){
//for(Number value : targetList){ ... }//will not compile
//values.add("hello"); //will not compile
values.add(1.0); //fine
}
void loadValuesFromDB(List<? super Number> targetList){
//for(Number value : targetList){ ... }//will not compile
//targetList.add("hello"); //will not compile
targetList.add(1.0); //fine
}