Копировать массив объектов на Java

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