Uses of Interface
org.hibernate.search.engine.spatial.GeoPoint
-
-
Uses of GeoPoint in org.hibernate.search.engine.backend.types.dsl
Methods in org.hibernate.search.engine.backend.types.dsl that return types with arguments of type GeoPoint Modifier and Type Method Description StandardIndexFieldTypeOptionsStep<?,GeoPoint>IndexFieldTypeFactory. asGeoPoint()Define a field type whose values are represented as aGeoPointin Hibernate Search. -
Uses of GeoPoint in org.hibernate.search.engine.cfg.spi
Methods in org.hibernate.search.engine.cfg.spi that return GeoPoint Modifier and Type Method Description static GeoPointParseUtils. parseGeoPoint(String value) -
Uses of GeoPoint in org.hibernate.search.engine.search.predicate.dsl
Methods in org.hibernate.search.engine.search.predicate.dsl with parameters of type GeoPoint Modifier and Type Method Description default NSpatialWithinPredicateAreaStep. circle(GeoPoint center, double radiusInMeters)Require at least one of the targeted fields to point to a location within the given circle, i.e.NSpatialWithinPredicateAreaStep. circle(GeoPoint center, double radius, DistanceUnit unit)Require at least one of the targeted fields to point to a location within the given circle, i.e. -
Uses of GeoPoint in org.hibernate.search.engine.search.predicate.spi
Methods in org.hibernate.search.engine.search.predicate.spi with parameters of type GeoPoint Modifier and Type Method Description voidSpatialWithinCirclePredicateBuilder. circle(GeoPoint center, double radius, DistanceUnit unit) -
Uses of GeoPoint in org.hibernate.search.engine.search.projection.dsl
Methods in org.hibernate.search.engine.search.projection.dsl with parameters of type GeoPoint Modifier and Type Method Description DistanceToFieldProjectionValueStep<?,Double>SearchProjectionFactory. distance(String absoluteFieldPath, GeoPoint center)Project on the distance from the center to aGeoPointfield. -
Uses of GeoPoint in org.hibernate.search.engine.search.projection.dsl.spi
Methods in org.hibernate.search.engine.search.projection.dsl.spi with parameters of type GeoPoint Modifier and Type Method Description DistanceToFieldProjectionValueStep<?,Double>DelegatingSearchProjectionFactory. distance(String absoluteFieldPath, GeoPoint center) -
Uses of GeoPoint in org.hibernate.search.engine.search.projection.spi
Methods in org.hibernate.search.engine.search.projection.spi with parameters of type GeoPoint Modifier and Type Method Description voidDistanceToFieldProjectionBuilder. center(GeoPoint center) -
Uses of GeoPoint in org.hibernate.search.engine.search.sort.dsl
Methods in org.hibernate.search.engine.search.sort.dsl with parameters of type GeoPoint Modifier and Type Method Description DistanceSortOptionsStep<?,PDF>ExtendedSearchSortFactory. distance(String absoluteFieldPath, GeoPoint location)DistanceSortOptionsStep<?,? extends SearchPredicateFactory>SearchSortFactory. distance(String absoluteFieldPath, GeoPoint location)Order elements by the distance from the location stored in the specified field to the location specified. -
Uses of GeoPoint in org.hibernate.search.engine.search.sort.dsl.spi
Methods in org.hibernate.search.engine.search.sort.dsl.spi with parameters of type GeoPoint Modifier and Type Method Description DistanceSortOptionsStep<?,PDF>DelegatingSearchSortFactory. distance(String absoluteFieldPath, GeoPoint location) -
Uses of GeoPoint in org.hibernate.search.engine.search.sort.spi
Methods in org.hibernate.search.engine.search.sort.spi with parameters of type GeoPoint Modifier and Type Method Description voidDistanceSortBuilder. center(GeoPoint center) -
Uses of GeoPoint in org.hibernate.search.engine.spatial
Methods in org.hibernate.search.engine.spatial that return GeoPoint Modifier and Type Method Description GeoPointGeoBoundingBox. bottomRight()static GeoPointGeoPoint. of(double latitude, double longitude)Create aGeoPointfrom a latitude and a longitude.GeoPointGeoBoundingBox. topLeft()Methods in org.hibernate.search.engine.spatial that return types with arguments of type GeoPoint Modifier and Type Method Description List<GeoPoint>GeoPolygon. points()Methods in org.hibernate.search.engine.spatial with parameters of type GeoPoint Modifier and Type Method Description static GeoBoundingBoxGeoBoundingBox. of(GeoPoint topLeft, GeoPoint bottomRight)Create aGeoBoundingBoxfrom the top-left and bottom-right corners.static GeoPolygonGeoPolygon. of(GeoPoint firstPoint, GeoPoint secondPoint, GeoPoint thirdPoint, GeoPoint fourthPoint, GeoPoint... additionalPoints)Create aGeoPolygonfrom points.Method parameters in org.hibernate.search.engine.spatial with type arguments of type GeoPoint Modifier and Type Method Description static GeoPolygonGeoPolygon. of(List<GeoPoint> points)Create aGeoPolygonfrom a list of points.
-