Record Class AbstractCheckpointStorage.Frame
java.lang.Object
java.lang.Record
com.mojang.blaze3d.vulkan.checkpoints.AbstractCheckpointStorage.Frame
- Enclosing class:
AbstractCheckpointStorage
private static record AbstractCheckpointStorage.Frame(List<AbstractCheckpointStorage.Checkpoint> checkpoints)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List<AbstractCheckpointStorage.Checkpoint> The field for thecheckpointsrecord component. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateFrame(List<AbstractCheckpointStorage.Checkpoint> checkpoints) Creates an instance of aFramerecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecheckpointsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
checkpoints
The field for thecheckpointsrecord component.
-
-
Constructor Details
-
Frame
Creates an instance of aFramerecord class.- Parameters:
checkpoints- the value for thecheckpointsrecord 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). -
checkpoints
Returns the value of thecheckpointsrecord component.- Returns:
- the value of the
checkpointsrecord component
-