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$VoxelShapePair
intermediary net/minecraft/class_2248$class_9894
official dkl$a
named first
intermediary comp_2940
official a
named second
intermediary comp_2941
official b
-
Field Summary
Modifier and TypeFieldDescriptionprivate final VoxelShape
The field for thefirst
record component.private final VoxelShape
The field for thesecond
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates whether some other object is "equal to" this one.first()
Returns the value of thefirst
record component.int
hashCode()
Returns a hash code value for this object.second()
Returns the value of thesecond
record component.final String
toString()
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 thefirst
record component.- Returns:
- the value of the
first
record component
-
second
Returns the value of thesecond
record component.- Returns:
- the value of the
second
record component
-