com.github.houbb.auto.summary.api.IAutoSummaryResult 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 java.util.List;
/**
* project: auto-summary-IAutoSummary
* create on 2020/3/12 21:56
*
* @author binbin.hou
* @since 0.0.1
*/
public interface IAutoSummaryResult {
/**
* 句子信息
* @return 句子
* @since 0.0.2
*/
String sentence();
/**
* 权重
* @return 权重
* @since 0.0.2
*/
double weight();
// 其他开始,结束信息等。
}