DictionaryEntryExtension extension

A DftMapEntry is a unit of entry in the DftMap of an inverted index. It enumerates the following property getters:

  • term is the word/term that is indexed; and
  • dFt is the number of documents that contain term.
on

Properties

dFt Ft

Available on DftMapEntry, provided by the DictionaryEntryExtension extension

The number of documents that contain term.
no setter
term String

Available on DftMapEntry, provided by the DictionaryEntryExtension extension

The word/term that is indexed.
no setter

Methods

incrementFrequency() DftMapEntry

Available on DftMapEntry, provided by the DictionaryEntryExtension extension

Returns a copy of the DftMapEntry instance with the Ft incremented by 1.
setFrequency(Ft frequency) DftMapEntry

Available on DftMapEntry, provided by the DictionaryEntryExtension extension

Returns a copy of the DftMapEntry instance with the Ft set to frequency.