Class RangePredicateFieldStepImpl
- java.lang.Object
-
- org.hibernate.search.engine.search.predicate.dsl.impl.RangePredicateFieldStepImpl
-
- All Implemented Interfaces:
RangePredicateFieldStep<RangePredicateFieldMoreStep<?,?>>
public final class RangePredicateFieldStepImpl extends Object implements RangePredicateFieldStep<RangePredicateFieldMoreStep<?,?>>
-
-
Constructor Summary
Constructors Constructor Description RangePredicateFieldStepImpl(SearchPredicateDslContext<?> dslContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RangePredicateFieldMoreStep<?,?>fields(String... fieldPaths)Target the given fields in the range 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.RangePredicateFieldStep
field
-
-
-
-
Constructor Detail
-
RangePredicateFieldStepImpl
public RangePredicateFieldStepImpl(SearchPredicateDslContext<?> dslContext)
-
-
Method Detail
-
fields
public RangePredicateFieldMoreStep<?,?> fields(String... fieldPaths)
Description copied from interface:RangePredicateFieldStepTarget the given fields in the range predicate.Equivalent to
RangePredicateFieldStep.field(String)followed by multiple calls toRangePredicateFieldMoreStep.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 interfaceRangePredicateFieldStep<RangePredicateFieldMoreStep<?,?>>- Parameters:
fieldPaths- The paths to the index fields to apply the predicate on.- Returns:
- The next step.
- See Also:
RangePredicateFieldStep.field(String)
-
-