Package ghidra.features.bsim.query.file
Record Class VectorStoreEntry
java.lang.Object
java.lang.Record
ghidra.features.bsim.query.file.VectorStoreEntry
- Record Components:
id
- vector IDvec
- vectorcount
- countselfSig
- self-significance of vector (using database settings)
A record containing an
LSHVector
and a count of the number of functions in the
database which share the vector-
Constructor Summary
ConstructorsConstructorDescriptionVectorStoreEntry
(long id, LSHVector vec, int count, double selfSig) Creates an instance of aVectorStoreEntry
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
count()
Returns the value of thecount
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.long
id()
Returns the value of theid
record component.double
selfSig()
Returns the value of theselfSig
record component.final String
toString()
Returns a string representation of this record class.vec()
Returns the value of thevec
record component.
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
id
public long id()Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
vec
Returns the value of thevec
record component.- Returns:
- the value of the
vec
record component
-
count
public int count()Returns the value of thecount
record component.- Returns:
- the value of the
count
record component
-
selfSig
public double selfSig()Returns the value of theselfSig
record component.- Returns:
- the value of the
selfSig
record component
-