Record Class Block.ShapePairKey
java.lang.Object
java.lang.Record
net.minecraft.world.level.block.Block.ShapePairKey
- Enclosing class:
Block
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final VoxelShapeThe field for thefirstrecord component.private final VoxelShapeThe field for thesecondrecord component. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateShapePairKey(VoxelShape first, VoxelShape second) Creates an instance of aShapePairKeyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates whether some other object is "equal to" this one.first()Returns the value of thefirstrecord component.inthashCode()Returns a hash code value for this object.second()Returns the value of thesecondrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
first
The field for thefirstrecord component. -
second
The field for thesecondrecord component.
-
-
Constructor Details
-
ShapePairKey
Creates an instance of aShapePairKeyrecord class.- Parameters:
first- the value for thefirstrecord componentsecond- the value for thesecondrecord component
-
-
Method Details
-
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). -
hashCode
-
toString
-
first
Returns the value of thefirstrecord component.- Returns:
- the value of the
firstrecord component
-
second
Returns the value of thesecondrecord component.- Returns:
- the value of the
secondrecord component
-