org.hibernate.search.query.dsl.impl.ConnectedRangeContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-search-engine Show documentation
Show all versions of hibernate-search-engine Show documentation
Core of the Object/Lucene mapper, query engine and index management
/*
* Hibernate Search, full-text search for your domain model
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.search.query.dsl.impl;
import org.apache.lucene.search.Query;
import org.hibernate.search.query.dsl.RangeContext;
import org.hibernate.search.query.dsl.RangeMatchingContext;
/**
* @author Emmanuel Bernard
*/
class ConnectedRangeContext implements RangeContext {
private final QueryBuildingContext queryContext;
private final QueryCustomizer queryCustomizer;
public ConnectedRangeContext(QueryBuildingContext queryContext) {
this.queryContext = queryContext;
this.queryCustomizer = new QueryCustomizer();
}
@Override
public RangeMatchingContext onField(String fieldName) {
return new ConnectedRangeMatchingContext( fieldName, queryCustomizer, queryContext );
}
@Override
public RangeContext boostedTo(float boost) {
queryCustomizer.boostedTo( boost );
return this;
}
@Override
public RangeContext withConstantScore() {
queryCustomizer.withConstantScore();
return this;
}
@Override
public RangeContext filteredBy(Query filter) {
queryCustomizer.filteredBy( filter );
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy