Package repast.simphony.query.space.gis
Class ContainsQuery<T>
java.lang.Object
repast.simphony.query.space.gis.AbstractGeometryQuery<T>
repast.simphony.query.space.gis.ContainsQuery<T>
- All Implemented Interfaces:
Query<T>
Query that determines what objects are contained by a geometry.
-
Field Summary
Fields inherited from class repast.simphony.query.space.gis.AbstractGeometryQuery
geography, geom, predicate, sourceObject
-
Constructor Summary
ConstructorDescriptionContainsQuery
(Geography<T> geography, org.locationtech.jts.geom.Geometry geom) Creates a ContainsQuery that will query the specified geography for objects that are contained by the specified geometry.ContainsQuery
(Geography<T> geography, T sourceObject) Creates a ContainsQuery that will query the specified geography for objects that are contained by the geometry of the specified object. -
Method Summary
Modifier and TypeMethodDescriptionprotected org.apache.commons.collections15.Predicate<T>
Creates a predicate that tests for containment.Methods inherited from class repast.simphony.query.space.gis.AbstractGeometryQuery
query, query
-
Constructor Details
-
ContainsQuery
Creates a ContainsQuery that will query the specified geography for objects that are contained by the geometry of the specified object.- Parameters:
geography
- the geography to querysourceObject
- the object whose geometry is the container
-
ContainsQuery
Creates a ContainsQuery that will query the specified geography for objects that are contained by the specified geometry.- Parameters:
geography
- the geography to querygeom
- the containing geometry
-
-
Method Details
-
createPredicate
Creates a predicate that tests for containment.- Specified by:
createPredicate
in classAbstractGeometryQuery<T>
- Returns:
- a predicate that tests for containment.
-