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

com.github.houbb.auto.summary.api.IAutoSummaryContext Maven / Gradle / Ivy

There is a newer version: 0.0.3
Show newest version
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(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy