Record Class CollectingNeighborUpdater.ShapeUpdate

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

static record CollectingNeighborUpdater.ShapeUpdate(Direction direction, BlockState state, BlockPos pos, BlockPos neighborPos, int updateFlags, int updateLimit) extends Record implements CollectingNeighborUpdater.NeighborUpdates
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final Direction
    The field for the direction 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.
    private final int
    The field for the updateFlags record component.
    private final int
    The field for the updateLimit record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    ShapeUpdate(Direction direction, BlockState state, BlockPos pos, BlockPos neighborPos, int updateFlags, int updateLimit)
    Creates an instance of a ShapeUpdate record class.
  • Method Summary

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

    Methods inherited from class java.lang.Object

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

    • direction

      private final Direction direction
      The field for the direction record component.
    • state

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

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

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

      private final int updateFlags
      The field for the updateFlags record component.
    • updateLimit

      private final int updateLimit
      The field for the updateLimit record component.
  • Constructor Details

    • ShapeUpdate

      ShapeUpdate(Direction direction, BlockState state, BlockPos pos, BlockPos neighborPos, int updateFlags, int updateLimit)
      Creates an instance of a ShapeUpdate record class.
      Parameters:
      direction - the value for the direction record component
      state - the value for the state record component
      pos - the value for the pos record component
      neighborPos - the value for the neighborPos record component
      updateFlags - the value for the updateFlags record component
      updateLimit - the value for the updateLimit record component
  • Method Details

    • runNext

      public boolean runNext(Level p_230716_)
      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.
    • direction

      public Direction direction()
      Returns the value of the direction record component.
      Returns:
      the value of the direction record component
    • 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
    • neighborPos

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

      public int updateFlags()
      Returns the value of the updateFlags record component.
      Returns:
      the value of the updateFlags record component
    • updateLimit

      public int updateLimit()
      Returns the value of the updateLimit record component.
      Returns:
      the value of the updateLimit record component