Annotation Interface DistanceProjection
@Documented
@Target(PARAMETER)
@Retention(RUNTIME)
@MethodParameterMapping(processor=@MethodParameterMappingAnnotationProcessorRef(type=DistanceProjectionProcessor.class,retrieval=CONSTRUCTOR))
public @interface DistanceProjection
Maps a constructor parameter to a distance projection,
i.e. sequences of text that matched the query, extracted from the given field's value.
-
Required Element Summary
Required Elements -
Optional Element Summary
Optional Elements
-
Element Details
-
fromParam
String fromParam- Returns:
- The name of a
query parameterthat will represent aGeoPointpoint, from which the distance to the field value will be calculated. - See Also:
-
-
-
path
String path- Returns:
- The path
to the index field whose value will be extracted.
Defaults to the name of the annotated constructor parameter,
if it can be retrieved (requires the class to be compiled with the
-parametersflag; otherwise an emptypathwill lead to a failure). - See Also:
- Default:
- ""
-
unit
DistanceUnit unit- Returns:
- The unit of the computed distance (default is meters).
- Default:
- METERS
-