Uses of Interface
org.hibernate.search.engine.search.predicate.dsl.PredicateFinalStep
-
-
Uses of PredicateFinalStep in org.hibernate.search.engine.search.aggregation.dsl
Methods in org.hibernate.search.engine.search.aggregation.dsl with parameters of type PredicateFinalStep Modifier and Type Method Description default SAggregationFilterStep. filter(PredicateFinalStep dslFinalStep)Filter nested objects from which values will be extracted for this aggregation.Method parameters in org.hibernate.search.engine.search.aggregation.dsl with type arguments of type PredicateFinalStep Modifier and Type Method Description SAggregationFilterStep. filter(Function<? super PDF,? extends PredicateFinalStep> clauseContributor)Filter nested objects from which values will be extracted for this aggregation. -
Uses of PredicateFinalStep in org.hibernate.search.engine.search.predicate.dsl
Subinterfaces of PredicateFinalStep in org.hibernate.search.engine.search.predicate.dsl Modifier and Type Interface Description interfaceBooleanPredicateClausesStep<S extends BooleanPredicateClausesStep<?>>The initial and final step in a boolean predicate definition, where clauses can be added.interfaceExistsPredicateOptionsStep<S extends ExistsPredicateOptionsStep<?>>The final step in an "exists" predicate definition, where optional parameters can be set.interfaceMatchAllPredicateOptionsStep<S extends MatchAllPredicateOptionsStep<?>>The initial and final step in "match all" predicate definition, where optional parameters can be set.interfaceMatchIdPredicateMatchingMoreStep<S extends MatchIdPredicateMatchingMoreStep<?,N>,N extends MatchIdPredicateOptionsStep<?>>The final step in a "match id" predicate definition, where more IDs to match can be set.interfaceMatchIdPredicateOptionsStep<S extends MatchIdPredicateOptionsStep<?>>The final step in a "match id" predicate definition, where optional parameters can be set.interfaceMatchPredicateOptionsStep<S extends MatchPredicateOptionsStep<?>>The final step in a "match" predicate definition, where optional parameters can be set.interfaceNestedPredicateOptionsStep<S extends NestedPredicateOptionsStep<?>>The final step in an "nested" predicate definition, where optional parameters can be set.interfacePhrasePredicateOptionsStep<S extends PhrasePredicateOptionsStep<?>>The final step in a "phrase" predicate definition, where optional parameters can be set.interfaceRangePredicateOptionsStep<S extends RangePredicateOptionsStep<?>>The final step in a "range" predicate definition, where optional parameters can be set.interfaceSimpleQueryStringPredicateOptionsStep<S extends SimpleQueryStringPredicateOptionsStep<?>>The final step in an "simple query string" predicate definition, where optional parameters can be set.interfaceSpatialWithinPredicateOptionsStep<S extends SpatialWithinPredicateOptionsStep<?>>The final step in a "within" predicate definition, where optional parameters can be set.interfaceWildcardPredicateOptionsStep<S extends WildcardPredicateOptionsStep<?>>The final step in a "wildcard" predicate definition, where optional parameters can be set.Methods in org.hibernate.search.engine.search.predicate.dsl that return PredicateFinalStep Modifier and Type Method Description PredicateFinalStepSearchPredicateFactory. bool(Consumer<? super BooleanPredicateClausesStep<?>> clauseContributor)Match documents if they match a combination of boolean clauses, which will be defined by the given consumer.PredicateFinalStepSearchPredicateFactoryExtensionIfSupportedMoreStep. orElse(Function<SearchPredicateFactory,? extends PredicateFinalStep> predicateContributor)If no extension passed toSearchPredicateFactoryExtensionIfSupportedStep.ifSupported(SearchPredicateFactoryExtension, Function)was supported so far, apply the given consumer to the current (non-extended)SearchPredicateFactory; otherwise return the predicate created in the first succeedingifSupportedcall.PredicateFinalStepSearchPredicateFactoryExtensionIfSupportedMoreStep. orElseFail()If no extension passed toSearchPredicateFactoryExtensionIfSupportedStep.ifSupported(SearchPredicateFactoryExtension, Function)was supported so far, throw an exception; otherwise return the predicate created in the first succeedingifSupportedcall.Methods in org.hibernate.search.engine.search.predicate.dsl with parameters of type PredicateFinalStep Modifier and Type Method Description default SMatchAllPredicateOptionsStep. except(PredicateFinalStep dslFinalStep)Add a "must not" clause based on an almost-builtSearchPredicate.default SBooleanPredicateClausesStep. filter(PredicateFinalStep dslFinalStep)Add a "filter" clause based on an almost-builtSearchPredicate.default SBooleanPredicateClausesStep. must(PredicateFinalStep dslFinalStep)Add a "must" clause based on an almost-builtSearchPredicate.default SBooleanPredicateClausesStep. mustNot(PredicateFinalStep dslFinalStep)Add a "must not" clause based on an almost-builtSearchPredicate.default NNestedPredicateNestStep. nest(PredicateFinalStep dslFinalStep)Set the inner predicate to an almost-builtSearchPredicate.default SBooleanPredicateClausesStep. should(PredicateFinalStep dslFinalStep)Add a "should" clause based on an almost-builtSearchPredicate.Method parameters in org.hibernate.search.engine.search.predicate.dsl with type arguments of type PredicateFinalStep Modifier and Type Method Description SMatchAllPredicateOptionsStep. except(Function<? super SearchPredicateFactory,? extends PredicateFinalStep> clauseContributor)Add a "must not" clause to be defined by the given function.SBooleanPredicateClausesStep. filter(Function<? super SearchPredicateFactory,? extends PredicateFinalStep> clauseContributor)Add a "filter" clause to be defined by the given function.<T> SearchPredicateFactoryExtensionIfSupportedMoreStepSearchPredicateFactoryExtensionIfSupportedStep. ifSupported(SearchPredicateFactoryExtension<T> extension, Function<T,? extends PredicateFinalStep> predicateContributor)If the given extension is supported, and none of the previous extensions passed toSearchPredicateFactoryExtensionIfSupportedStep.ifSupported(SearchPredicateFactoryExtension, Function)was supported, extend the current factory with this extension, apply the given function to the extended factory, and store the resulting predicate for later retrieval.SBooleanPredicateClausesStep. must(Function<? super SearchPredicateFactory,? extends PredicateFinalStep> clauseContributor)Add a "must" clause to be defined by the given function.SBooleanPredicateClausesStep. mustNot(Function<? super SearchPredicateFactory,? extends PredicateFinalStep> clauseContributor)Add a "must not" clause to be defined by the given function.NNestedPredicateNestStep. nest(Function<? super SearchPredicateFactory,? extends PredicateFinalStep> predicateContributor)Set the inner predicate defined by the given function.PredicateFinalStepSearchPredicateFactoryExtensionIfSupportedMoreStep. orElse(Function<SearchPredicateFactory,? extends PredicateFinalStep> predicateContributor)If no extension passed toSearchPredicateFactoryExtensionIfSupportedStep.ifSupported(SearchPredicateFactoryExtension, Function)was supported so far, apply the given consumer to the current (non-extended)SearchPredicateFactory; otherwise return the predicate created in the first succeedingifSupportedcall.SBooleanPredicateClausesStep. should(Function<? super SearchPredicateFactory,? extends PredicateFinalStep> clauseContributor)Add a "should" clause to be defined by the given function. -
Uses of PredicateFinalStep in org.hibernate.search.engine.search.predicate.dsl.spi
Classes in org.hibernate.search.engine.search.predicate.dsl.spi that implement PredicateFinalStep Modifier and Type Class Description classAbstractPredicateFinalStepAn abstract base forPredicateFinalStepimplementations.classStaticPredicateFinalStepMethods in org.hibernate.search.engine.search.predicate.dsl.spi that return PredicateFinalStep Modifier and Type Method Description PredicateFinalStepDelegatingSearchPredicateFactory. bool(Consumer<? super BooleanPredicateClausesStep<?>> clauseContributor) -
Uses of PredicateFinalStep in org.hibernate.search.engine.search.query.dsl
Method parameters in org.hibernate.search.engine.search.query.dsl with type arguments of type PredicateFinalStep Modifier and Type Method Description default NSearchQueryWhereStep. predicate(Function<? super PDF,? extends PredicateFinalStep> predicateContributor)Deprecated.UseSearchQueryWhereStep.where(Function)instead.NSearchQueryWhereStep. where(Function<? super PDF,? extends PredicateFinalStep> predicateContributor)Set the predicate for this query. -
Uses of PredicateFinalStep in org.hibernate.search.engine.search.query.dsl.spi
Method parameters in org.hibernate.search.engine.search.query.dsl.spi with type arguments of type PredicateFinalStep Modifier and Type Method Description SearchQueryOptionsStep<?,E,LOS,?,?>AbstractDelegatingSearchQuerySelectStep. where(Function<? super SearchPredicateFactory,? extends PredicateFinalStep> predicateContributor)SAbstractSearchQueryOptionsStep. where(Function<? super PDF,? extends PredicateFinalStep> predicateContributor) -
Uses of PredicateFinalStep in org.hibernate.search.engine.search.sort.dsl
Methods in org.hibernate.search.engine.search.sort.dsl with parameters of type PredicateFinalStep Modifier and Type Method Description default SSortFilterStep. filter(PredicateFinalStep dslFinalStep)Filter nested objects from which values will be extracted for this sort.Method parameters in org.hibernate.search.engine.search.sort.dsl with type arguments of type PredicateFinalStep Modifier and Type Method Description SSortFilterStep. filter(Function<? super PDF,? extends PredicateFinalStep> clauseContributor)Filter nested objects from which values will be extracted for this sort.
-