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
named net/minecraft/util/math/BlockPointer
intermediary net/minecraft/class_2342
official kr
named world
intermediary comp_1967
official a
named pos
intermediary comp_1968
official b
named state
intermediary comp_1969
official c
named blockEntity
intermediary comp_1970
official d
  • Field Details

  • Constructor Details

  • Method Details

    • centerPos

      public Vec3d centerPos()
      Mappings:
      Namespace Name Mixin selector
      named centerPos Lnet/minecraft/util/math/BlockPointer;centerPos()Lnet/minecraft/util/math/Vec3d;
      intermediary method_53906 Lnet/minecraft/class_2342;method_53906()Lnet/minecraft/class_243;
      official a Lkr;a()Lewh;
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • world

      public ServerWorld world()
      Returns the value of the world record component.
      Returns:
      the value of the world record component
    • pos

      public BlockPos pos()
      Returns the value of the pos record component.
      Returns:
      the value of the pos record component
    • state

      public BlockState state()
      Returns the value of the state record component.
      Returns:
      the value of the state record component
    • blockEntity

      public DispenserBlockEntity blockEntity()
      Returns the value of the blockEntity record component.
      Returns:
      the value of the blockEntity record component