001// Licensed under the MIT license. See LICENSE file in the project root for full license information.
002
003package de.bytefish.pgbulkinsert.pgsql.model.geometric;
004
005public class Point {
006
007    private final double x;
008    private final double y;
009
010    public Point(double x, double y) {
011        this.x = x;
012        this.y = y;
013    }
014
015    public double getX() {
016        return x;
017    }
018
019    public double getY() {
020        return y;
021    }
022
023}