com.github.houbb.keyword.api.IKeyword Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keyword Show documentation
Show all versions of keyword Show documentation
The keyword tool for java.(java nlp 分词关键词提取工具。)
package com.github.houbb.keyword.api;
import java.util.List;
/**
* @author binbin.hou
* @since 0.0.1
*/
public interface IKeyword {
/**
* 分词实现
* @param text 文本信息
* @param context 上下文
* @return 结果列表
* @since 0.0.1
*/
List keyword(final String text,
final IKeywordContext context);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy