Package net.minecraft.block
Record Class Block.VoxelShapePair
java.lang.Object
java.lang.Record
net.minecraft.block.Block.VoxelShapePair
- Record Components:
first-second-
- Enclosing class:
Block
- Mappings:
Namespace Name named net/minecraft/block/Block$VoxelShapePairintermediary net/minecraft/class_2248$class_9894official dno$anamed firstintermediary comp_2940official anamed secondintermediary comp_2941official b
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final VoxelShapeThe field for thefirstrecord component.private final VoxelShapeThe field for thesecondrecord component. -
Constructor Summary
Constructors -
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
-
Constructor Details
-
VoxelShapePair
VoxelShapePair(VoxelShape voxelShape, VoxelShape voxelShape2)
-
-
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
-