I have an array of int:
int[] a = {1, 2, 3};
I need a typed set from it:
Set s;
If I do th
You can use ArrayUtils in Apache Commons:
int[] intArray = { 1, 2, 3 }; Integer[] integerArray = ArrayUtils.toObject(intArray);