If you're open to using a third party library, this will work in Eclipse Collections:
int[] a = {1, 2, 3};
List integers = IntLists.mutable.with(a).collect(i -> i);
Assert.assertEquals(Lists.mutable.with(1, 2, 3), integers);
Note: I am a committer for Eclipse Collections.