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