Class LuceneStopWords

java.lang.Object
org.dlese.dpc.index.LuceneStopWords

public final class LuceneStopWords extends Object
This class simply loads a hashmap of Lucene stop words from the array given by StopAnalyzer. This way a single map lookup can be used instead of iterating over the array every time.
Author:
ryandear, John Weatherley
  • Field Details

    • ENGLISH_STOP_WORDS

      public static final String[] ENGLISH_STOP_WORDS
      Keep a copy of the stop words here in case the Lucene package is not available
  • Constructor Details

    • LuceneStopWords

      public LuceneStopWords()
      Constructor for the LuceneStopWords object
  • Method Details

    • isStopWord

      public static boolean isStopWord(String word)
      Indicates whether the given word is a Lucene stop word
      Parameters:
      word -
      Returns:
      The luceneStopWord value