All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.solr.spelling.QueryConverter Maven / Gradle / Ivy

The newest version!
package org.apache.solr.spelling;
/**
 * 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.
 */

import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.Token;
import org.apache.solr.common.util.NamedList;
import org.apache.solr.util.plugin.NamedListInitializedPlugin;

import java.util.Collection;

/**
 * 

* The QueryConverter is an abstract base class defining a method for converting * input "raw" queries into a set of tokens for spell checking. It is used to * "parse" the CommonParams.Q (the input query) and converts it to tokens. *

* *

* It is only invoked for the CommonParams.Q parameter, and not the * "spellcheck.q" parameter. Systems that use their own query parser or those * that find issue with the basic implementation should implement their * own QueryConverter instead of using the provided implementation * (SpellingQueryConverter) by overriding the appropriate methods on the * SpellingQueryConverter and registering it in the solrconfig.xml *

* *

* Refer to SpellCheckComponent * for more details *

* * @since solr 1.3 */ public abstract class QueryConverter implements NamedListInitializedPlugin { private NamedList args; protected Analyzer analyzer; public void init(NamedList args) { this.args = args; } /** * @param original * @return The Collection of {@link org.apache.lucene.analysis.Token}s for * the query. Offsets on the Token should correspond to the correct * offset in the origQuery */ public abstract Collection convert(String original); /** * Set the analyzer to use. Must be set before any calls to convert. * * @param analyzer */ public void setAnalyzer(Analyzer analyzer) { this.analyzer = analyzer; } public Analyzer getAnalyzer() { return analyzer; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy