public interface FilterGeometry extends Persistable
| Modifier and Type | Method and Description |
|---|---|
boolean |
contains(FilterGeometry other)
Check to see if this geometry contains the provided geometry.
|
boolean |
crosses(FilterGeometry other)
Check to see if this geometry crosses the provided geometry.
|
boolean |
disjoint(FilterGeometry other)
Check to see if this geometry is disjoint from the provided geometry.
|
org.locationtech.jts.geom.Geometry |
getGeometry() |
boolean |
intersects(FilterGeometry other)
Check to see if this geometry intersects the provided geometry.
|
boolean |
isEqualTo(FilterGeometry other)
Check to see if this geometry is topologically equal to the provided geometry.
|
boolean |
overlaps(FilterGeometry other)
Check to see if this geometry overlaps the provided geometry.
|
boolean |
touches(FilterGeometry other)
Check to see if this geometry touches the provided geometry.
|
boolean |
within(FilterGeometry other)
Check to see if this geometry is within the provided geometry.
|
fromBinary, toBinaryorg.locationtech.jts.geom.Geometry getGeometry()
boolean intersects(FilterGeometry other)
other - the geometry to test againsttrue if the geometries intersectboolean disjoint(FilterGeometry other)
other - the geometry to test againsttrue if the geometries are disjointboolean crosses(FilterGeometry other)
other - the geometry to test againsttrue if this geometry crosses the provided geometryboolean overlaps(FilterGeometry other)
other - the geometry to test againsttrue if the geometries overlapboolean touches(FilterGeometry other)
other - the geometry to test againsttrue if the geometries touchboolean within(FilterGeometry other)
other - the geomtery to test againsttrue if this geometry is within the provided geometryboolean contains(FilterGeometry other)
other - the geomtery to test againsttrue if this geometry contains the provided geometryboolean isEqualTo(FilterGeometry other)
other - the geomtery to test againsttrue if this geometry is topologically equal to the provided geometryCopyright © 2013–2021. All rights reserved.