com.github.houbb.auto.summary.api.IAutoSummaryContext 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.api;
import com.github.houbb.auto.summary.support.keyword.IAutoSummaryKeyword;
import com.github.houbb.auto.summary.support.reader.IAutoSummaryReader;
import com.github.houbb.auto.summary.support.sentence.IAutoSummarySentence;
/**
* project: auto-summary-IAutoSummary
* create on 2020/3/12 21:56
*
* @author binbin.hou
* @since 0.0.1
*/
public interface IAutoSummaryContext {
/**
* 关键字实现
* @return 关键字实现
* @since 0.0.1
*/
IAutoSummaryKeyword keyword();
/**
* 断句实现
* @return 实现
* @since 0.0.1
*/
IAutoSummarySentence sentence();
/**
* 文本的读取实现类
* @return 实现
* @since 0.0.1
*/
IAutoSummaryReader reader();
/**
* 限制句子数量
* @return 数量
* @since 0.0.1
*/
int limit();
}