From 7ec6fcc8236219872a00e966ab581accf9a533aa Mon Sep 17 00:00:00 2001 From: Peter Bae Date: Mon, 23 Jul 2018 10:16:49 -0700 Subject: [PATCH] more javadoc changes --- .../microsoft/sqlserver/jdbc/Geography.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/Geography.java b/src/main/java/com/microsoft/sqlserver/jdbc/Geography.java index 8f09ff50c..4f3bcd8f2 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/Geography.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/Geography.java @@ -131,15 +131,15 @@ public static Geography parse(String wkt) throws SQLServerException { } /** - * Constructor for a Geography instance that represents a Point instance from its X and Y values and a Spatial - * Reference Identifier. + * Constructor for a Geography instance that represents a Point instance from its latitude and longitude values and + * a Spatial Reference Identifier. * * @param x - * x coordinate + * longitude * @param y - * y coordinate + * latitude * @param srid - * Spatial Reference Identifier Spatial Reference Identifier value + * Spatial Reference Identifier value * @return Geography Geography instance * @throws SQLServerException * if an exception occurs @@ -212,9 +212,9 @@ public boolean hasZ() { } /** - * Returns the X coordinate value. + * Returns the latitude value. * - * @return double value that represents the X coordinate. + * @return double value that represents the latitude. */ public Double getLatitude() { if (null != internalType && internalType == InternalSpatialDatatype.POINT && xValues.length == 1) { @@ -224,9 +224,9 @@ public Double getLatitude() { } /** - * Returns the Y coordinate value. + * Returns the longitude value. * - * @return double value that represents the Y coordinate. + * @return double value that represents the longitude. */ public Double getLongitude() { if (null != internalType && internalType == InternalSpatialDatatype.POINT && yValues.length == 1) {