Copier le tableau d'objets en Java

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