Package com.chenlb.mmseg4j

Examples of com.chenlb.mmseg4j.Chunk


   * @return 返回规则过虑后的结果。
   * @author chenlb 2009-3-16 上午11:33:10
   */
  public List<Chunk> remainChunks() {
    for(Iterator<Chunk> it=chunks.iterator(); it.hasNext();) {
      Chunk chunk = it.next();
      if(isRemove(chunk)) {
        it.remove();
      }
    }
    return chunks;
View Full Code Here

TOP

Related Classes of com.chenlb.mmseg4j.Chunk

Copyright © 2018 www.massapicom. 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.