Kopiuj tablicę obiektów w Javie

Point[] temp = Arrays.stream(mypointarray).map(Point::new).toArray(Point[]::new);
Mattia