java.lang.Object
java.lang.Record
org.apache.lucene.index.ReaderSlice
- Record Components:
start
- Document ID this slice starts from.length
- Number of documents in this slice.readerIndex
- Sub-reader index for this slice.
Subreader slice from a parent composite reader.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ReaderSlice[]
Zero-lengthReaderSlice
array.private final int
The field for thelength
record component.private final int
The field for thereaderIndex
record component.private final int
The field for thestart
record component. -
Constructor Summary
ConstructorsConstructorDescriptionReaderSlice
(int start, int length, int readerIndex) Creates an instance of aReaderSlice
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int
length()
Returns the value of thelength
record component.int
Returns the value of thereaderIndex
record component.int
start()
Returns the value of thestart
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
start
private final int startThe field for thestart
record component. -
length
private final int lengthThe field for thelength
record component. -
readerIndex
private final int readerIndexThe field for thereaderIndex
record component. -
EMPTY_ARRAY
Zero-lengthReaderSlice
array.
-
-
Constructor Details
-
ReaderSlice
public ReaderSlice(int start, int length, int readerIndex) Creates an instance of aReaderSlice
record class.- Parameters:
start
- the value for thestart
record componentlength
- the value for thelength
record componentreaderIndex
- the value for thereaderIndex
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. All components in this record class are compared with '=='. -
start
public int start()Returns the value of thestart
record component.- Returns:
- the value of the
start
record component
-
length
public int length()Returns the value of thelength
record component.- Returns:
- the value of the
length
record component
-
readerIndex
public int readerIndex()Returns the value of thereaderIndex
record component.- Returns:
- the value of the
readerIndex
record component
-