Class ST_OrderingEquals
- java.lang.Object
-
- org.h2gis.api.AbstractFunction
-
- org.h2gis.api.DeterministicScalarFunction
-
- org.h2gis.functions.spatial.predicates.ST_OrderingEquals
-
- All Implemented Interfaces:
org.h2gis.api.Function,org.h2gis.api.ScalarFunction
public class ST_OrderingEquals extends org.h2gis.api.DeterministicScalarFunctionST_OrderingEquals compares two geometries and t (TRUE) if the geometries are equal and the coordinates are in the same order; otherwise it returns f (FALSE). This method implements the SQL/MM specification: SQL-MM 3: 5.1.43- Author:
- Erwan Bocher
-
-
Constructor Summary
Constructors Constructor Description ST_OrderingEquals()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetJavaStaticMethod()static booleanorderingEquals(org.h2.value.Value valueA, org.h2.value.Value valueB)Returns true if the given geometries represent the same geometry and points are in the same directional order.-
Methods inherited from class org.h2gis.api.AbstractFunction
addProperty, getProperty, removeProperty
-
-
-
-
Method Detail
-
getJavaStaticMethod
public String getJavaStaticMethod()
-
orderingEquals
public static boolean orderingEquals(org.h2.value.Value valueA, org.h2.value.Value valueB) throws SQLExceptionReturns true if the given geometries represent the same geometry and points are in the same directional order.- Parameters:
valueA-valueB-- Returns:
- Throws:
SQLException
-
-