com.github.houbb.auto.summary.support.sentence.IAutoSummarySentence Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auto-summary Show documentation
Show all versions of auto-summary Show documentation
The auto-summary tool for java.
package com.github.houbb.auto.summary.support.sentence;
import java.util.List;
/**
* project: auto-summary-IAutoSummarySentence
* create on 2020/3/12 22:07
*
* @author binbin.hou
* @since 0.0.1
*/
public interface IAutoSummarySentence {
/**
* 断句
* @param text 原始文本
* @return 结果列表
* @since 0.0.1
*/
List sentence(final String text);
}