Package com.chenlb.mmseg4j.analysis

Source Code of com.chenlb.mmseg4j.analysis.MaxWordAnalyzer

package com.chenlb.mmseg4j.analysis;

import java.io.File;

import com.chenlb.mmseg4j.Dictionary;
import com.chenlb.mmseg4j.MaxWordSeg;
import com.chenlb.mmseg4j.Seg;


/**
* 最多分词方式.
*
* @author chenlb 2009-4-6 下午08:43:46
*/
public class MaxWordAnalyzer extends MMSegAnalyzer {

  public MaxWordAnalyzer() {
    super();
  }

  public MaxWordAnalyzer(String path) {
    super(path);
  }

  public MaxWordAnalyzer(Dictionary dic) {
    super(dic);
  }

  public MaxWordAnalyzer(File path) {
    super(path);
  }

  protected Seg newSeg() {
    return new MaxWordSeg(dic);
  }
}
TOP

Related Classes of com.chenlb.mmseg4j.analysis.MaxWordAnalyzer

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.