Class WildcardPredicateFieldStepImpl
- java.lang.Object
-
- org.hibernate.search.engine.search.predicate.dsl.impl.WildcardPredicateFieldStepImpl
-
- All Implemented Interfaces:
WildcardPredicateFieldStep<WildcardPredicateFieldMoreStep<?,?>>
public final class WildcardPredicateFieldStepImpl extends Object implements WildcardPredicateFieldStep<WildcardPredicateFieldMoreStep<?,?>>
-
-
Constructor Summary
Constructors Constructor Description WildcardPredicateFieldStepImpl(SearchPredicateDslContext<?> dslContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WildcardPredicateFieldMoreStep<?,?>fields(String... fieldPaths)Target the given fields in the wildcard predicate.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.search.engine.search.predicate.dsl.WildcardPredicateFieldStep
field
-
-
-
-
Constructor Detail
-
WildcardPredicateFieldStepImpl
public WildcardPredicateFieldStepImpl(SearchPredicateDslContext<?> dslContext)
-
-
Method Detail
-
fields
public WildcardPredicateFieldMoreStep<?,?> fields(String... fieldPaths)
Description copied from interface:WildcardPredicateFieldStepTarget the given fields in the wildcard predicate.Only text fields are supported.
Equivalent to
WildcardPredicateFieldStep.field(String)followed by multiple calls toWildcardPredicateFieldMoreStep.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 interfaceWildcardPredicateFieldStep<WildcardPredicateFieldMoreStep<?,?>>- Parameters:
fieldPaths- The paths to the index fields to apply the predicate on.- Returns:
- The next step.
- See Also:
WildcardPredicateFieldStep.field(String)
-
-