Package com.chenlb.mmseg4j.solr

Source Code of com.chenlb.mmseg4j.solr.CutLetterDigitFilterFactory

package com.chenlb.mmseg4j.solr;

import org.apache.lucene.analysis.TokenStream;
import org.apache.solr.analysis.BaseTokenFilterFactory;

import com.chenlb.mmseg4j.analysis.CutLetterDigitFilter;

/**
* CutLetterDigitFilter 支持在 solr 上配置用。
*
* @author chenlb 2010-12-17下午10:10:48
*/
public class CutLetterDigitFilterFactory extends BaseTokenFilterFactory {

  @Override
  public TokenStream create(TokenStream input) {
   
    return new CutLetterDigitFilter(input);
  }

}
TOP

Related Classes of com.chenlb.mmseg4j.solr.CutLetterDigitFilterFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.