As @Bozho has demonstrated the problem can be fixed, however to demonstrate what is going on consider this code:
public class Main {
// This is the original version that fails because of type erasure in arrays
private static <T> void foo(T[] t1, T[] t2) {
t2[0] = t1[0];
}
// The same method as foo() but with the type erasure demonstrated
private static void foo2(Object[] t1, Object[] t2) {
// Integer[] should not contain String
t2[0] = t1[0];
}
public static void main(String[] args) {
String[] stringArray = new String[]{"1", "2", "3"};
Integer[] integerArray = new Integer[]{4, 5, 6};
foo2(stringArray, integerArray);
}
}
This is all to do with the fact that arrays in Java are covariant, whereas generics are not. There is an interesting article about it here. A quick quote says it all:
Arrays in the Java language are
covariant -- which means that if
Integer extends Number (which it
does), then not only is an Integer
also a Number, but an Integer[] is
also a Number[], and you are free to
pass or assign an Integer[] where a
Number[] is called for. (More
formally, if Number is a supertype of
Integer, then Number[] is a supertype
of Integer[].) You might think the
same is true of generic types as well
-- that List is a supertype of List, and that you can pass a
List where a List is
expected. Unfortunately, it doesn't
work that way.
It turns out there's a good reason it
doesn't work that way: It would break
the type safety generics were supposed
to provide. Imagine you could assign a
List to a List. Then
the following code would allow you to
put something that wasn't an Integer
into a List:
List<Integer> li = new ArrayList<Integer>();
List<Number> ln = li; // illegal
ln.add(new Float(3.1415));
Because ln is a List, adding a Float to it seems perfectly legal. But if ln were aliased with li, then it would break the type-safety promise implicit in the definition of li -- that it is a list of integers, which is why generic types cannot be covariant.