Class DirectSpellChecker.ScoreTerm

java.lang.Object
org.apache.lucene.search.spell.DirectSpellChecker.ScoreTerm
All Implemented Interfaces:
Comparable<DirectSpellChecker.ScoreTerm>
Enclosing class:
DirectSpellChecker

protected static class DirectSpellChecker.ScoreTerm extends Object implements Comparable<DirectSpellChecker.ScoreTerm>
Holds a spelling correction for internal usage inside DirectSpellChecker.
  • Field Details

    • term

      public BytesRef term
      The actual spellcheck correction.
    • boost

      public float boost
      The boost representing the similarity from the FuzzyTermsEnum (internal similarity score)
    • docfreq

      public int docfreq
      The df of the spellcheck correction.
    • termAsString

      public String termAsString
      The spellcheck correction represented as string, can be null.
    • score

      public float score
      The similarity score.
  • Constructor Details

    • ScoreTerm

      public ScoreTerm()
      Constructor.
  • Method Details