Record Class BlockfileSequentialSingleUseReader.ParsedBlock
java.lang.Object
java.lang.Record
io.datarouter.bytes.blockfile.io.read.query.BlockfileSequentialSingleUseReader.ParsedBlock
- Enclosing class:
BlockfileSequentialSingleUseReader<T>
public static record BlockfileSequentialSingleUseReader.ParsedBlock(BlockfileBlockType blockType, ParsedValueBlock parsedValueBlock)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionParsedBlock(BlockfileBlockType blockType, ParsedValueBlock parsedValueBlock) Creates an instance of aParsedBlockrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theblockTyperecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theparsedValueBlockrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ParsedBlock
Creates an instance of aParsedBlockrecord class.- Parameters:
blockType- the value for theblockTyperecord componentparsedValueBlock- the value for theparsedValueBlockrecord component
-
-
Method Details
-
toString
-
hashCode
-
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 withObjects::equals(Object,Object). -
blockType
Returns the value of theblockTyperecord component.- Returns:
- the value of the
blockTyperecord component
-
parsedValueBlock
Returns the value of theparsedValueBlockrecord component.- Returns:
- the value of the
parsedValueBlockrecord component
-