Uses of Interface
org.hibernate.search.engine.spatial.GeoBoundingBox
-
Packages that use GeoBoundingBox Package Description org.hibernate.search.engine.search.predicate.dsl org.hibernate.search.engine.search.predicate.spi org.hibernate.search.engine.spatial -
-
Uses of GeoBoundingBox in org.hibernate.search.engine.search.predicate.dsl
Methods in org.hibernate.search.engine.search.predicate.dsl with parameters of type GeoBoundingBox Modifier and Type Method Description N
SpatialWithinPredicateAreaStep. boundingBox(GeoBoundingBox boundingBox)
Require at least one of the targeted fields to point to a location within the given box (~rectangle). -
Uses of GeoBoundingBox in org.hibernate.search.engine.search.predicate.spi
Methods in org.hibernate.search.engine.search.predicate.spi with parameters of type GeoBoundingBox Modifier and Type Method Description void
SpatialWithinBoundingBoxPredicateBuilder. boundingBox(GeoBoundingBox boundingBox)
-
Uses of GeoBoundingBox in org.hibernate.search.engine.spatial
Methods in org.hibernate.search.engine.spatial that return GeoBoundingBox Modifier and Type Method Description static GeoBoundingBox
GeoBoundingBox. of(double topLeftLatitude, double topLeftLongitude, double bottomRightLatitude, double bottomRightLongitude)
Create aGeoBoundingBox
from the latitude and longitude of the top-left and bottom-right corners.static GeoBoundingBox
GeoBoundingBox. of(GeoPoint topLeft, GeoPoint bottomRight)
Create aGeoBoundingBox
from the top-left and bottom-right corners.
-