Package oracle.spatial.geometry
Interface JGeometry.GeomParser
-
- Enclosing class:
- JGeometry
public static interface JGeometry.GeomParserCallbacks for parsing this geometry via parseGeometry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcircle(double p1x, double p1y, double p2x, double p2y, double p3x, double p3y)voidfinish()voidlinestring(java.util.List<oracle.spatial.geometry.JGeometry.LineStringInfo> lineinfo)voidpoint(double x, double y)voidring(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
-
-