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

org.sindice.siren.solr.analysis.TabularQueryTokenizerFactory Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2009-2011 Sindice Limited. All Rights Reserved.
 *
 * Project and contact information: http://www.siren.sindice.com/
 *
 * This file is part of the SIREn project.
 *
 * SIREn is a free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of
 * the License, or (at your option) any later version.
 *
 * SIREn is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public
 * License along with SIREn. If not, see .
 */
/**
 * @project siren
 * @author Renaud Delbru [ 25 Jul 2010 ]
 * @link http://renaud.delbru.fr/
 * @copyright Copyright (C) 2010 by Renaud Delbru, All rights reserved.
 */
package org.sindice.siren.solr.analysis;

import java.io.Reader;

import org.apache.solr.analysis.BaseTokenizerFactory;
import org.sindice.siren.qparser.analysis.TabularQueryTokenizer;

public class TabularQueryTokenizerFactory extends BaseTokenizerFactory {

	@Override
	public TabularQueryTokenizer create(final Reader input) {
		return new TabularQueryTokenizer(input);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy