Class ST_Contains
- java.lang.Object
-
- org.h2gis.api.AbstractFunction
-
- org.h2gis.api.DeterministicScalarFunction
-
- org.h2gis.functions.spatial.predicates.ST_Contains
-
- All Implemented Interfaces:
org.h2gis.api.Function,org.h2gis.api.ScalarFunction
public class ST_Contains extends org.h2gis.api.DeterministicScalarFunctionReturn true if Geometry A contains Geometry B.- Author:
- Nicolas Fortin
-
-
Constructor Summary
Constructors Constructor Description ST_Contains()Default constructor
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetJavaStaticMethod()static BooleanisContains(org.locationtech.jts.geom.Geometry surface, org.locationtech.jts.geom.Geometry testGeometry)-
Methods inherited from class org.h2gis.api.AbstractFunction
addProperty, getProperty, removeProperty
-
-
-
-
Method Detail
-
getJavaStaticMethod
public String getJavaStaticMethod()
-
isContains
public static Boolean isContains(org.locationtech.jts.geom.Geometry surface, org.locationtech.jts.geom.Geometry testGeometry) throws SQLException
- Parameters:
surface- Surface Geometry.testGeometry- Geometry instance- Returns:
- True only if no points of testGeometry lie outside of surface
- Throws:
SQLException
-
-