Interface JGeometry.GeomParser

  • Enclosing class:
    JGeometry

    public static interface JGeometry.GeomParser
    Callbacks for parsing this geometry via parseGeometry
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void circle​(double p1x, double p1y, double p2x, double p2y, double p3x, double p3y)  
      void finish()  
      void linestring​(java.util.List<oracle.spatial.geometry.JGeometry.LineStringInfo> lineinfo)  
      void point​(double x, double y)  
      void ring​(boolean interior, java.util.List<oracle.spatial.geometry.JGeometry.LineStringInfo> lineinfo)  
    • Method Detail

      • point

        void point​(double x,
                   double y)
            throws java.lang.Exception
        Throws:
        java.lang.Exception
      • circle

        void circle​(double p1x,
                    double p1y,
                    double p2x,
                    double p2y,
                    double p3x,
                    double p3y)
             throws java.lang.Exception
        Throws:
        java.lang.Exception
      • ring

        void ring​(boolean interior,
                  java.util.List<oracle.spatial.geometry.JGeometry.LineStringInfo> lineinfo)
           throws java.lang.Exception
        Throws:
        java.lang.Exception
      • linestring

        void linestring​(java.util.List<oracle.spatial.geometry.JGeometry.LineStringInfo> lineinfo)
                 throws java.lang.Exception
        Throws:
        java.lang.Exception
      • finish

        void finish()
             throws java.lang.Exception
        Throws:
        java.lang.Exception