Uses of Interface
org.hibernate.search.engine.search.projection.dsl.DistanceToFieldProjectionOptionsStep
Packages that use DistanceToFieldProjectionOptionsStep
-
Uses of DistanceToFieldProjectionOptionsStep in org.hibernate.search.engine.search.projection.dsl
Classes in org.hibernate.search.engine.search.projection.dsl with type parameters of type DistanceToFieldProjectionOptionsStepModifier and TypeInterfaceDescriptioninterfaceDistanceToFieldProjectionOptionsStep<S extends DistanceToFieldProjectionOptionsStep<?,T>, T> The initial and final step in a "distance to field" projection definition, where optional parameters can be set.interfaceDistanceToFieldProjectionValueStep<N extends DistanceToFieldProjectionOptionsStep<?,T>, T> The initial step in a "distance to field" projection definition, where (optionally) the projection collector can be provided, e.g. to mark a projection as multi-valued (returningList/Setetc.)Subinterfaces of DistanceToFieldProjectionOptionsStep in org.hibernate.search.engine.search.projection.dslModifier and TypeInterfaceDescriptioninterfaceDistanceToFieldProjectionValueStep<N extends DistanceToFieldProjectionOptionsStep<?,T>, T> The initial step in a "distance to field" projection definition, where (optionally) the projection collector can be provided, e.g. to mark a projection as multi-valued (returningList/Setetc.)Methods in org.hibernate.search.engine.search.projection.dsl that return DistanceToFieldProjectionOptionsStepModifier and TypeMethodDescriptiondefault DistanceToFieldProjectionOptionsStep<?, T[]> Defines the projection as multivalued, i.e. returningT[]instead ofT.<R> DistanceToFieldProjectionOptionsStep<?, R> DistanceToFieldProjectionValueStep.collector(ProjectionCollector.Provider<T, R> collector) Defines how to accumulate distance projection values.default DistanceToFieldProjectionOptionsStep<?, List<T>> DistanceToFieldProjectionValueStep.list()Defines the projection as multivalued, i.e. returningList<T>instead ofT.default DistanceToFieldProjectionOptionsStep<?, List<T>> DistanceToFieldProjectionValueStep.multi()Deprecated.default DistanceToFieldProjectionOptionsStep<?, Optional<T>> DistanceToFieldProjectionValueStep.optional()Defines the projection as single-valued wrapped in anOptional, i.e. returningOptional<T>instead ofT.default DistanceToFieldProjectionOptionsStep<?, Set<T>> DistanceToFieldProjectionValueStep.set()Defines the projection as multivalued, i.e. returningSet<T>instead ofT.default DistanceToFieldProjectionOptionsStep<?, SortedSet<T>> DistanceToFieldProjectionValueStep.sortedSet()Defines the projection as multivalued, i.e. returningSortedSet<T>instead ofT.default DistanceToFieldProjectionOptionsStep<?, SortedSet<T>> DistanceToFieldProjectionValueStep.sortedSet(Comparator<T> comparator) Defines the projection as multivalued, i.e. returningSortedSet<T>instead ofT.
DistanceToFieldProjectionValueStep.collector(ProjectionCollector.Provider)instead.