org.apache.lucene.facet.FacetQuery Maven / Gradle / Ivy
Show all versions of lucene-facet Show documentation
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.lucene.facet;
import org.apache.lucene.index.Term;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.TermQuery;
/**
* A term {@link Query} over a {@link FacetField}.
*
* NOTE:This helper class is an alternative to {@link DrillDownQuery} especially in cases
* where you don't intend to use {@link DrillSideways}
*
* @lucene.experimental
*/
public class FacetQuery extends TermQuery {
/** Creates a new {@code FacetQuery} filtering the query on the given dimension. */
public FacetQuery(final FacetsConfig facetsConfig, final String dimension, final String... path) {
super(toTerm(facetsConfig.getDimConfig(dimension), dimension, path));
}
/**
* Creates a new {@code FacetQuery} filtering the query on the given dimension.
*
*
NOTE:Uses FacetsConfig.DEFAULT_DIM_CONFIG.
*/
public FacetQuery(final String dimension, final String... path) {
super(toTerm(FacetsConfig.DEFAULT_DIM_CONFIG, dimension, path));
}
static Term toTerm(
final FacetsConfig.DimConfig dimConfig, final String dimension, final String... path) {
return new Term(dimConfig.indexFieldName, FacetsConfig.pathToString(dimension, path));
}
}