Class ST_MakePoint

  • All Implemented Interfaces:
    org.h2gis.api.Function, org.h2gis.api.ScalarFunction
    Direct Known Subclasses:
    ST_Point

    public class ST_MakePoint
    extends org.h2gis.api.DeterministicScalarFunction
    ST_MakePoint constructs POINT from two or three doubles.
    Author:
    Adam Gouge
    • Field Summary

      • Fields inherited from interface org.h2gis.api.Function

        PROP_NAME, PROP_REMARKS
      • Fields inherited from interface org.h2gis.api.ScalarFunction

        PROP_DETERMINISTIC
    • Constructor Summary

      Constructors 
      Constructor Description
      ST_MakePoint()  
    • Constructor Detail

      • ST_MakePoint

        public ST_MakePoint()
    • Method Detail

      • getJavaStaticMethod

        public String getJavaStaticMethod()
      • createPoint

        public static org.locationtech.jts.geom.Point createPoint​(double x,
                                                                  double y)
                                                           throws SQLException
        Constructs POINT from two doubles.
        Parameters:
        x - X-coordinate
        y - Y-coordinate
        Returns:
        The POINT constructed from the given coordinatesk
        Throws:
        SQLException
      • createPoint

        public static org.locationtech.jts.geom.Point createPoint​(double x,
                                                                  double y,
                                                                  double z)
                                                           throws SQLException
        Constructs POINT from three doubles.
        Parameters:
        x - X-coordinate
        y - Y-coordinate
        z - Z-coordinate
        Returns:
        The POINT constructed from the given coordinates
        Throws:
        SQLException