Package org.apache.lucene.util.bkd
Record Class BKDRadixSelector.PathSlice
java.lang.Object
java.lang.Record
org.apache.lucene.util.bkd.BKDRadixSelector.PathSlice
- Enclosing class:
BKDRadixSelector
public static record BKDRadixSelector.PathSlice(PointWriter writer, long start, long count)
extends Record
Sliced reference to points in an PointWriter.
-
Constructor Summary
ConstructorsConstructorDescriptionPathSlice
(PointWriter writer, long start, long count) Creates an instance of aPathSlice
record class. -
Method Summary
Modifier and TypeMethodDescriptionlong
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
start()
Returns the value of thestart
record component.final String
toString()
Returns a string representation of this record class.writer()
Returns the value of thewriter
record component.
-
Constructor Details
-
PathSlice
Creates an instance of aPathSlice
record class.- Parameters:
writer
- the value for thewriter
record componentstart
- the value for thestart
record componentcount
- the value for thecount
record component
-
-
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 '=='. -
writer
Returns the value of thewriter
record component.- Returns:
- the value of the
writer
record component
-
start
public long start()Returns the value of thestart
record component.- Returns:
- the value of the
start
record component
-
count
public long count()Returns the value of thecount
record component.- Returns:
- the value of the
count
record component
-