Record Class CollectingNeighborUpdater.FullNeighborUpdate

java.lang.Object
java.lang.Record
net.minecraft.world.level.redstone.CollectingNeighborUpdater.FullNeighborUpdate
All Implemented Interfaces:
CollectingNeighborUpdater.NeighborUpdates
Enclosing class:
CollectingNeighborUpdater

static record CollectingNeighborUpdater.FullNeighborUpdate(BlockState state, BlockPos pos, Block block, BlockPos neighborPos, boolean movedByPiston) extends Record implements CollectingNeighborUpdater.NeighborUpdates
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final Block
    The field for the block record component.
    private final boolean
    The field for the movedByPiston record component.
    private final BlockPos
    The field for the neighborPos record component.
    private final BlockPos
    The field for the pos record component.
    private final BlockState
    The field for the state record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    FullNeighborUpdate(BlockState state, BlockPos pos, Block block, BlockPos neighborPos, boolean movedByPiston)
    Creates an instance of a FullNeighborUpdate record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the block record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    boolean
    Returns the value of the movedByPiston record component.
    Returns the value of the neighborPos record component.
    pos()
    Returns the value of the pos record component.
    boolean
    runNext(Level p_230683_)
     
    Returns the value of the state record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • state

      private final BlockState state
      The field for the state record component.
    • pos

      private final BlockPos pos
      The field for the pos record component.
    • block

      private final Block block
      The field for the block record component.
    • neighborPos

      private final BlockPos neighborPos
      The field for the neighborPos record component.
    • movedByPiston

      private final boolean movedByPiston
      The field for the movedByPiston record component.
  • Constructor Details

    • FullNeighborUpdate

      FullNeighborUpdate(BlockState state, BlockPos pos, Block block, BlockPos neighborPos, boolean movedByPiston)
      Creates an instance of a FullNeighborUpdate record class.
      Parameters:
      state - the value for the state record component
      pos - the value for the pos record component
      block - the value for the block record component
      neighborPos - the value for the neighborPos record component
      movedByPiston - the value for the movedByPiston record component
  • Method Details

    • runNext

      public boolean runNext(Level p_230683_)
      Specified by:
      runNext in interface CollectingNeighborUpdater.NeighborUpdates
    • 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 o)
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • state

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

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

      public Block block()
      Returns the value of the block record component.
      Returns:
      the value of the block record component
    • neighborPos

      public BlockPos neighborPos()
      Returns the value of the neighborPos record component.
      Returns:
      the value of the neighborPos record component
    • movedByPiston

      public boolean movedByPiston()
      Returns the value of the movedByPiston record component.
      Returns:
      the value of the movedByPiston record component