本文整理汇总了Java中org.apache.lucene.analysis.eu.BasqueAnalyzer类的典型用法代码示例。如果您正苦于以下问题:Java BasqueAnalyzer类的具体用法?Java BasqueAnalyzer怎么用?Java BasqueAnalyzer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BasqueAnalyzer类属于org.apache.lucene.analysis.eu包,在下文中一共展示了BasqueAnalyzer类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getStopList
import org.apache.lucene.analysis.eu.BasqueAnalyzer; //导入依赖的package包/类
private static List<String> getStopList(String path) {
List<String> stopwords = new ArrayList<String>();
try {
InputStream in = BasqueAnalyzer.class.getResourceAsStream(path);
BufferedReader input = new BufferedReader(
new InputStreamReader(in));
for(String line = input.readLine(); line != null; line = input.readLine()) {
if (line.startsWith("#")) continue;
stopwords.add(line);
}
input.close();
return stopwords;
} catch(IOException e) {
e.printStackTrace();
System.exit(1);
return null;
}
}
开发者ID:kariminf,项目名称:langpi,代码行数:23,代码来源:EuSWEliminator.java
示例2: BasqueAnalyzerProvider
import org.apache.lucene.analysis.eu.BasqueAnalyzer; //导入依赖的package包/类
public BasqueAnalyzerProvider(IndexSettings indexSettings, Environment env, String name, Settings settings) {
super(indexSettings, name, settings);
analyzer = new BasqueAnalyzer(
Analysis.parseStopWords(env, indexSettings.getIndexVersionCreated(), settings, BasqueAnalyzer.getDefaultStopSet()),
Analysis.parseStemExclusion(settings, CharArraySet.EMPTY_SET)
);
analyzer.setVersion(version);
}
开发者ID:justor,项目名称:elasticsearch_my,代码行数:9,代码来源:BasqueAnalyzerProvider.java
示例3: BasqueAnalyzerProvider
import org.apache.lucene.analysis.eu.BasqueAnalyzer; //导入依赖的package包/类
@Inject
public BasqueAnalyzerProvider(Index index, IndexSettingsService indexSettingsService, Environment env, @Assisted String name, @Assisted Settings settings) {
super(index, indexSettingsService.getSettings(), name, settings);
analyzer = new BasqueAnalyzer(Analysis.parseStopWords(env, settings, BasqueAnalyzer.getDefaultStopSet()),
Analysis.parseStemExclusion(settings, CharArraySet.EMPTY_SET));
analyzer.setVersion(version);
}
开发者ID:baidu,项目名称:Elasticsearch,代码行数:8,代码来源:BasqueAnalyzerProvider.java
示例4: get
import org.apache.lucene.analysis.eu.BasqueAnalyzer; //导入依赖的package包/类
@Override
public BasqueAnalyzer get() {
return this.analyzer;
}
开发者ID:justor,项目名称:elasticsearch_my,代码行数:5,代码来源:BasqueAnalyzerProvider.java
示例5: getDefaultStopwords
import org.apache.lucene.analysis.eu.BasqueAnalyzer; //导入依赖的package包/类
/**
* Returns the default stopwords set used by Lucene language analyzer for the specified language.
*
* @param language The language for which the stopwords are. The supported languages are English, French, Spanish,
* Portuguese, Italian, Romanian, German, Dutch, Swedish, Norwegian, Danish, Russian, Finnish,
* Irish, Hungarian, Turkish, Armenian, Basque and Catalan.
* @return The default stopwords set used by Lucene language analyzers.
*/
private static CharArraySet getDefaultStopwords(String language) {
switch (language) {
case "English":
return EnglishAnalyzer.getDefaultStopSet();
case "French":
return FrenchAnalyzer.getDefaultStopSet();
case "Spanish":
return SpanishAnalyzer.getDefaultStopSet();
case "Portuguese":
return PortugueseAnalyzer.getDefaultStopSet();
case "Italian":
return ItalianAnalyzer.getDefaultStopSet();
case "Romanian":
return RomanianAnalyzer.getDefaultStopSet();
case "German":
return GermanAnalyzer.getDefaultStopSet();
case "Dutch":
return DutchAnalyzer.getDefaultStopSet();
case "Swedish":
return SwedishAnalyzer.getDefaultStopSet();
case "Norwegian":
return NorwegianAnalyzer.getDefaultStopSet();
case "Danish":
return DanishAnalyzer.getDefaultStopSet();
case "Russian":
return RussianAnalyzer.getDefaultStopSet();
case "Finnish":
return FinnishAnalyzer.getDefaultStopSet();
case "Irish":
return IrishAnalyzer.getDefaultStopSet();
case "Hungarian":
return HungarianAnalyzer.getDefaultStopSet();
case "Turkish":
return SpanishAnalyzer.getDefaultStopSet();
case "Armenian":
return SpanishAnalyzer.getDefaultStopSet();
case "Basque":
return BasqueAnalyzer.getDefaultStopSet();
case "Catalan":
return CatalanAnalyzer.getDefaultStopSet();
default:
return CharArraySet.EMPTY_SET;
}
}
开发者ID:Stratio,项目名称:stratio-cassandra,代码行数:53,代码来源:SnowballAnalyzerBuilder.java
注:本文中的org.apache.lucene.analysis.eu.BasqueAnalyzer类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论