AnalyzerType.java :  » Search-Engine » compass-2.0 » org » compass » annotations » Java Open Source

Java Open Source » Search Engine » compass 2.0 
compass 2.0 » org » compass » annotations » AnalyzerType.java
package org.compass.annotations;

/**
 * The intenral Compass supported analyzers.
 * Note the {@link #CustomAnalyzer}, which is not an analyzer, but specifies
 * that the analyzer that will be used is a custom implementation of Lucene
 * <code>Analyzer</code>/
 *
 * @author kimchy
 */
public enum AnalyzerType {
    Standard,
    Simple,
    Whitespace,
    Stop,
    /**
     * Uses a snowball analyzer. See {@link SnowballType}.
     */
    Snowball,
    Braziliian,
    Cjk,
    Chinese,
    Czech,
    German,
    Greek,
    French,
    Dutch,
    Russian,
    CustomAnalyzer
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.