Java 类org.apache.lucene.analysis.tokenattributes.TypeAttributeImpl 实例源码

项目:t4f-data    文件:AnalyzerUtils.java   
public static String getTerm(AttributeSource source) {
    TypeAttributeImpl attr = source.addAttribute(TypeAttributeImpl.class);
    return attr.type();
}
项目:t4f-data    文件:AnalyzerUtils.java   
public static String getType(AttributeSource source) {
    TypeAttributeImpl attr = source.addAttribute(TypeAttributeImpl.class);
    return attr.type();
}