Record Class BinaryQuantizer.QueryFactors

java.lang.Object
java.lang.Record
org.elasticsearch.index.codec.vectors.es816.BinaryQuantizer.QueryFactors
Enclosing class:
BinaryQuantizer

public static record BinaryQuantizer.QueryFactors(int quantizedSum, float distToC, float lower, float width, float normVmC, float vDotC) extends Record
Factors for quantizing query
  • Constructor Summary

    Constructors
    Constructor
    Description
    QueryFactors(int quantizedSum, float distToC, float lower, float width, float normVmC, float vDotC)
    Creates an instance of a QueryFactors record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    Returns the value of the distToC record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    float
    Returns the value of the lower record component.
    float
    Returns the value of the normVmC record component.
    int
    Returns the value of the quantizedSum record component.
    final String
    Returns a string representation of this record class.
    float
    Returns the value of the vDotC record component.
    float
    Returns the value of the width record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • QueryFactors

      public QueryFactors(int quantizedSum, float distToC, float lower, float width, float normVmC, float vDotC)
      Creates an instance of a QueryFactors record class.
      Parameters:
      quantizedSum - the value for the quantizedSum record component
      distToC - the value for the distToC record component
      lower - the value for the lower record component
      width - the value for the width record component
      normVmC - the value for the normVmC record component
      vDotC - the value for the vDotC record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • quantizedSum

      public int quantizedSum()
      Returns the value of the quantizedSum record component.
      Returns:
      the value of the quantizedSum record component
    • distToC

      public float distToC()
      Returns the value of the distToC record component.
      Returns:
      the value of the distToC record component
    • lower

      public float lower()
      Returns the value of the lower record component.
      Returns:
      the value of the lower record component
    • width

      public float width()
      Returns the value of the width record component.
      Returns:
      the value of the width record component
    • normVmC

      public float normVmC()
      Returns the value of the normVmC record component.
      Returns:
      the value of the normVmC record component
    • vDotC

      public float vDotC()
      Returns the value of the vDotC record component.
      Returns:
      the value of the vDotC record component