Kopieren Sie eine Reihe von Objekten in Java

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