org.ansj.app.summary.pojo.Summary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ansj_seg Show documentation
Show all versions of ansj_seg Show documentation
best java chinese word seg !
package org.ansj.app.summary.pojo;
import java.util.List;
import org.ansj.app.keyword.Keyword;
/**
* 摘要结构体封装
*
* @author ansj
*
*/
public class Summary {
/**
* 关键词
*/
private List keyWords = null;
/**
* 摘要
*/
private String summary;
public Summary(List keyWords, String summary) {
this.keyWords = keyWords;
this.summary = summary;
}
public List getKeyWords() {
return keyWords;
}
public String getSummary() {
return summary;
}
}