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

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

Introduction

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

Usage

From source file com.qwazr.search.analysis.UpdatableAnalyzer.java

final public class UpdatableAnalyzer extends DelegatingAnalyzerWrapper {

    private final Analyzer defaultAnalyzer = new KeywordAnalyzer();

    private volatile AnalyzerContext context;

From source file com.stratio.cassandra.lucene.schema.SchemaAnalyzer.java

/**
 * Variation of {@link DelegatingAnalyzerWrapper} to be used with CQL.
 *
 * @author Andres de la Pena {@literal <adelapena@stratio.com>}
 */
public class SchemaAnalyzer extends DelegatingAnalyzerWrapper {

From source file de.walware.statet.r.internal.core.rhelp.index.QueryAnalyzer.java

final class QueryAnalyzer extends DelegatingAnalyzerWrapper {
    // see org.apache.lucene.analysis.miscellaneous.PerFieldAnalyzerWrapper

    private final Analyzer defaultAnalyzer;

    private final Analyzer nameAnalyzers;

From source file de.walware.statet.r.internal.core.rhelp.index.WriteAnalyzer.java

public final class WriteAnalyzer extends DelegatingAnalyzerWrapper {
    // see org.apache.lucene.analysis.miscellaneous.PerFieldAnalyzerWrapper

    private final Analyzer defaultAnalyzer;

    private final Analyzer htmlAnalyzers;

From source file org.apache.jena.query.text.analyzer.IndexingMultilingualAnalyzer.java

/** 
 * Lucene Analyzer implementation that delegates to a language-specific
 * Analyzer based on a field name suffix: e.g. field="label_en" will use
 * an EnglishAnalyzer.
 */

From source file org.apache.jena.query.text.analyzer.MultilingualAnalyzer.java

/** 
 * Lucene Analyzer implementation that delegates to a language-specific
 * Analyzer based on a field name suffix: e.g. field="label_en" will use
 * an EnglishAnalyzer.
 */

From source file org.apache.jena.query.text.analyzer.QueryMultilingualAnalyzer.java

/** 
 * Lucene Analyzer implementation that delegates to a language-specific
 * Analyzer based on a field name suffix: e.g. field="label_en" will use
 * an EnglishAnalyzer.
 */

From source file org.codelibs.elasticsearch.index.analysis.FieldNameAnalyzer.java

/**
 *
 */
public final class FieldNameAnalyzer extends DelegatingAnalyzerWrapper {

    private final Map<String, Analyzer> analyzers;

From source file org.codelibs.elasticsearch.index.analysis.NamedAnalyzer.java

/**
 * Named analyzer is an analyzer wrapper around an actual analyzer ({#analyzer} that is associated
 * with a name ({#name()}.
 */
public class NamedAnalyzer extends DelegatingAnalyzerWrapper {

From source file org.elasticsearch.index.mapper.MapperAnalyzer.java

/** Hacky analyzer to dispatch per-thread based on the type of the current document being indexed, to look up the per-field Analyzer.  Once
 *  mappings are moved to the index level we can remove this. */
public class MapperAnalyzer extends DelegatingAnalyzerWrapper {

    private final MapperService mapperService;