001// Licensed under the MIT license. See LICENSE file in the project root for full license information. 002 003package de.bytefish.pgbulkinsert.pgsql.handlers.utils; 004 005import de.bytefish.pgbulkinsert.pgsql.model.geometric.Point; 006 007import java.io.DataOutputStream; 008 009public class GeometricUtils { 010 011 public static void writePoint(DataOutputStream buffer, final Point value) throws Exception { 012 buffer.writeDouble(value.getX()); 013 buffer.writeDouble(value.getY()); 014 } 015 016}