I have an array that is initialized like:
Element[] array = {new Element(1), new Element(2), new Element(3)};
I would like to convert this
Another way (although essentially equivalent to the new ArrayList(Arrays.asList(array)) solution performance-wise:
new ArrayList(Arrays.asList(array))
Collections.addAll(arraylist, array);