Example usage for org.apache.lucene.analysis StopwordAnalyzerBase subclass-usage

List of usage examples for org.apache.lucene.analysis StopwordAnalyzerBase subclass-usage

Introduction

In this page you can find the example usage for org.apache.lucene.analysis StopwordAnalyzerBase subclass-usage.

Usage

From source file RomanianAnalyzer.java

/**
 * {@link Analyzer} for Romanian.
 */
public final class RomanianAnalyzer extends StopwordAnalyzerBase {
    private final Set<?> stemExclusionSet;

From source file at.ac.univie.mminf.luceneSKOS.analysis.SKOSAnalyzer.java

/**
 * An analyzer for expanding fields that contain either (i) URI references to
 * SKOS concepts OR (ii) SKOS concept prefLabels as values.
 */
public class SKOSAnalyzer extends StopwordAnalyzerBase {

From source file buzztaiki.lucene.lastuni.CJKLastUniGramAnalyzer.java

/**
 * An {@link Analyzer} that tokenizes text with {@link CJKTokenizer} and
 * filters with {@link CJKLastUniGramFilter} and {@link StopFilter}
 *
 */
public final class CJKLastUniGramAnalyzer extends StopwordAnalyzerBase {

From source file ca.ubc.cs.reverb.indexer.ReverbLuceneAnalyzer.java

/**
 * Filters {@link StandardTokenizer} with {@link StandardFilter}, {@link
 * LowerCaseFilter} and {@link StopFilter}, using a list of
 * English stop words.
 *
 * <a name="version"/>

From source file ca.ubc.cs.reverb.indexer.WebPageAnalyzer.java

/**
 * Filters {@link StandardTokenizer} with {@link StandardFilter}, {@link
 * LowerCaseFilter}, {@link StopFilter} (using a list of
 * English stop words), and MethodCallFilter.
 *
 * <a name="version"/>

From source file com.fluidops.iwb.api.wiki.WikipediaAnalyzer.java

/**
 * Extension of StandardAnalyzer that is aware of Wikipedia syntax.
 * 
 * @author christian.huetter
 */
public final class WikipediaAnalyzer extends StopwordAnalyzerBase {

From source file com.mozilla.grouperfish.lucene.analysis.en.EnglishAnalyzer.java

/**
 * {@link Analyzer} for English.
 */
public final class EnglishAnalyzer extends StopwordAnalyzerBase {

    private final boolean stem;

From source file com.mozilla.grouperfish.lucene.analysis.en.NGramEnglishAnalyzer.java

public class NGramEnglishAnalyzer extends StopwordAnalyzerBase {

    private final Set<?> stemExclusionSet;
    private boolean stem = false;
    private boolean outputUnigrams = true;
    private int minNGram = ShingleAllStopFilter.DEFAULT_MIN_SHINGLE_SIZE;

From source file com.mozilla.grouperfish.transforms.coclustering.lucene.analysis.en.EnglishAnalyzer.java

/**
 * {@link Analyzer} for English.
 */
public final class EnglishAnalyzer extends StopwordAnalyzerBase {

    private final boolean stem;

From source file com.mozilla.grouperfish.transforms.coclustering.lucene.analysis.en.NGramEnglishAnalyzer.java

public class NGramEnglishAnalyzer extends StopwordAnalyzerBase {

    private final Set<?> stemExclusionSet;
    private boolean stem = false;
    private boolean outputUnigrams = true;
    private int minNGram = ShingleAllStopFilter.DEFAULT_MIN_SHINGLE_SIZE;