Package net.minecraft.util.math
Record Class BlockPointer
java.lang.Object
java.lang.Record
net.minecraft.util.math.BlockPointer
- Record Components:
world
-pos
-state
-blockEntity
-
public record BlockPointer(ServerWorld world, BlockPos pos, BlockState state, DispenserBlockEntity blockEntity)
extends Record
- Mappings:
Namespace Name official id
intermediary net/minecraft/class_2342
named net/minecraft/util/math/BlockPointer
official a
intermediary comp_1967
named world
official b
intermediary comp_1968
named pos
official c
intermediary comp_1969
named state
official d
intermediary comp_1970
named blockEntity
-
Field Summary
Modifier and TypeFieldDescriptionprivate final DispenserBlockEntity
The field for theblockEntity
record component.private final BlockPos
The field for thepos
record component.private final BlockState
The field for thestate
record component.private final ServerWorld
The field for theworld
record component. -
Constructor Summary
ConstructorDescriptionBlockPointer
(ServerWorld serverWorld, BlockPos blockPos, BlockState blockState, DispenserBlockEntity dispenserBlockEntity) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theblockEntity
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.pos()
Returns the value of thepos
record component.state()
Returns the value of thestate
record component.final String
toString()
Returns a string representation of this record class.world()
Returns the value of theworld
record component.
-
Field Details
-
world
The field for theworld
record component. -
pos
The field for thepos
record component. -
state
The field for thestate
record component. -
blockEntity
The field for theblockEntity
record component.
-
-
Constructor Details
-
BlockPointer
public BlockPointer(ServerWorld serverWorld, BlockPos blockPos, BlockState blockState, DispenserBlockEntity dispenserBlockEntity)
-
-
Method Details
-
centerPos
- Mappings:
Namespace Name Mixin selector official a
Lid;a()Lehn;
intermediary method_53906
Lnet/minecraft/class_2342;method_53906()Lnet/minecraft/class_243;
named centerPos
Lnet/minecraft/util/math/BlockPointer;centerPos()Lnet/minecraft/util/math/Vec3d;
-
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. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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)
. -
world
Returns the value of theworld
record component.- Returns:
- the value of the
world
record component
-
pos
Returns the value of thepos
record component.- Returns:
- the value of the
pos
record component
-
state
Returns the value of thestate
record component.- Returns:
- the value of the
state
record component
-
blockEntity
Returns the value of theblockEntity
record component.- Returns:
- the value of the
blockEntity
record component
-