Package net.minecraft.world.level.block
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
ConstructorsConstructorDescriptionShapePairKey(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
ShapePairKey(VoxelShape first, VoxelShape second) 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
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. -
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
-