/*
 * 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 Query over a FacetField.

NOTE:This helper class is an alternative to DrillDownQuery especially in cases where you don't intend to use DrillSideways

@lucene.experimental
/** * A term {@link Query} over a {@link FacetField}. * <p> * <b>NOTE:</b>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 FacetQuery filtering the query on the given dimension.
/** * 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 FacetQuery filtering the query on the given dimension.

NOTE:Uses FacetsConfig.DEFAULT_DIM_CONFIG.

/** * Creates a new {@code FacetQuery} filtering the query on the given dimension. * <p> * <b>NOTE:</b>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)); } }