org.elasticsearch.index.analysis.TermItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-analysis-pinyin Show documentation
Show all versions of elasticsearch-analysis-pinyin Show documentation
Pinyin Analysis for Elasticsearch
The newest version!
package org.elasticsearch.index.analysis;
/**
* Created by IntelliJ IDEA.
* User: Medcl'
* Date: 12-5-21
* Time: 下午5:53
*/
public class TermItem{
String term;
int startOffset;
int endOffset;
public TermItem(String term,int startOffset,int endOffset){
this.term=term;
this.startOffset=startOffset;
this.endOffset=endOffset;
}
@Override
public String toString() {
return term;
}
}