com.github.houbb.auto.summary.api.impl.AutoSummaries 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.impl;
import com.github.houbb.auto.summary.api.IAutoSummary;
import com.github.houbb.heaven.support.instance.impl.Instances;
/**
* project: auto-summary-IAutoSummary
* create on 2020/3/12 21:56
*
* @author binbin.hou
* @since 0.0.1
*/
public final class AutoSummaries {
private AutoSummaries(){}
/**
* 默认实现
* @return 实现
* @since 0.0.1
*/
public static IAutoSummary simple() {
return Instances.singleton(AutoSummarySimple.class);
}
/**
* 考虑到关键词的权重
* @return 实现
* @since 0.0.2
*/
public static IAutoSummary weight() {
return Instances.singleton(AutoSummaryWeight.class);
}
}