Class SimpleQueryStringPredicateFieldStepImpl
java.lang.Object
org.hibernate.search.engine.search.predicate.dsl.impl.SimpleQueryStringPredicateFieldStepImpl
- All Implemented Interfaces:
CommonQueryStringPredicateFieldStep<SimpleQueryStringPredicateFieldMoreStep<?,,?>> SimpleQueryStringPredicateFieldStep<SimpleQueryStringPredicateFieldMoreStep<?,?>>
public final class SimpleQueryStringPredicateFieldStepImpl
extends Object
implements SimpleQueryStringPredicateFieldStep<SimpleQueryStringPredicateFieldMoreStep<?,?>>
-
Constructor Summary
ConstructorsConstructorDescriptionSimpleQueryStringPredicateFieldStepImpl(SearchPredicateDslContext<?> dslContext) -
Method Summary
Modifier and TypeMethodDescriptionTarget the given fields in the query string predicate.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.hibernate.search.engine.search.predicate.dsl.CommonQueryStringPredicateFieldStep
field
-
Constructor Details
-
SimpleQueryStringPredicateFieldStepImpl
-
-
Method Details
-
fields
Description copied from interface:CommonQueryStringPredicateFieldStepTarget the given fields in the query string predicate.Only text fields are supported.
Equivalent to
CommonQueryStringPredicateFieldStep.field(String)followed by multiple calls toCommonQueryStringPredicateFieldStep.field(String), the only difference being that calls toMultiFieldPredicateFieldBoostStep.boost(float)and other field-specific settings on the returned step will only need to be done once and will apply to all the fields passed to this method.- Specified by:
fieldsin interfaceCommonQueryStringPredicateFieldStep<SimpleQueryStringPredicateFieldMoreStep<?,?>> - Parameters:
fieldPaths- The paths to the index fields to apply the predicate on.- Returns:
- The next step.
- See Also:
-