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

com.whaleal.icefrog.extra.tokenizer.engine.jcseg.JcsegResult Maven / Gradle / Ivy

The newest version!
package com.whaleal.icefrog.extra.tokenizer.engine.jcseg;

import com.whaleal.icefrog.extra.tokenizer.Result;
import com.whaleal.icefrog.extra.tokenizer.TokenizerException;
import com.whaleal.icefrog.extra.tokenizer.Word;
import org.lionsoul.jcseg.ISegment;
import org.lionsoul.jcseg.IWord;

import java.io.IOException;
import java.util.Iterator;
import java.util.NoSuchElementException;

/**
 * Jcseg分词结果包装
* 项目地址:https://github.com/lionsoul/jcseg * * @author Looly * @author wh * */ public class JcsegResult implements Result{ private final ISegment result; private Word cachedWord; /** * 构造 * @param segment 分词结果 */ public JcsegResult(ISegment segment) { this.result = segment; } @Override public boolean hasNext() { if (this.cachedWord != null) { return true; } IWord next; try { next = this.result.next(); } catch (IOException e) { throw new TokenizerException(e); } if(null != next) { this.cachedWord = new JcsegWord(next); return true; } return false; } @Override public Word next() { if (false == hasNext()) { throw new NoSuchElementException("No more word !"); } final Word currentWord = this.cachedWord; this.cachedWord = null; return currentWord; } @Override public void remove() { throw new UnsupportedOperationException("Jcseg result not allow to remove !"); } @Override public Iterator iterator() { return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy