Package com.yahoo.prelude.query
Record Class DocumentFrequency
java.lang.Object
java.lang.Record
com.yahoo.prelude.query.DocumentFrequency
- Record Components:
frequency- The number of documents in which an item occurscount- The total number of documents in the corpus
The expected number of documents matching an item given a corpus of
multiple documents. This is the raw data used to calculate variants
of idf, used as significance.
-
Constructor Summary
ConstructorsConstructorDescriptionDocumentFrequency(long frequency, long count) Creates an instance of aDocumentFrequencyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionlongcount()Returns the value of thecountrecord component.final booleanIndicates whether some other object is "equal to" this one.longReturns the value of thefrequencyrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='. -
frequency
public long frequency()Returns the value of thefrequencyrecord component.- Returns:
- the value of the
frequencyrecord component
-
count
public long count()Returns the value of thecountrecord component.- Returns:
- the value of the
countrecord component
-