Class IndonesianAnalyzer

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable

    public final class IndonesianAnalyzer
    extends StopwordAnalyzerBase
    Analyzer for Indonesian (Bahasa)
    • Field Detail

      • DEFAULT_STOPWORD_FILE

        public static final java.lang.String DEFAULT_STOPWORD_FILE
        File containing default Indonesian stopwords.
        See Also:
        Constant Field Values
    • Constructor Detail

      • IndonesianAnalyzer

        public IndonesianAnalyzer​(Version matchVersion)
        Builds an analyzer with the default stop words: DEFAULT_STOPWORD_FILE.
      • IndonesianAnalyzer

        public IndonesianAnalyzer​(Version matchVersion,
                                  CharArraySet stopwords)
        Builds an analyzer with the given stop words
        Parameters:
        matchVersion - lucene compatibility version
        stopwords - a stopword set
      • IndonesianAnalyzer

        public IndonesianAnalyzer​(Version matchVersion,
                                  CharArraySet stopwords,
                                  CharArraySet stemExclusionSet)
        Builds an analyzer with the given stop word. If a none-empty stem exclusion set is provided this analyzer will add a SetKeywordMarkerFilter before IndonesianStemFilter.
        Parameters:
        matchVersion - lucene compatibility version
        stopwords - a stopword set
        stemExclusionSet - a set of terms not to be stemmed
    • Method Detail

      • getDefaultStopSet

        public static CharArraySet getDefaultStopSet()
        Returns an unmodifiable instance of the default stop-words set.
        Returns:
        an unmodifiable instance of the default stop-words set.