Record Class DebugGoalSelectorCustomPayload.Goal

java.lang.Object
java.lang.Record
net.minecraft.network.packet.s2c.custom.DebugGoalSelectorCustomPayload.Goal
Record Components:
priority -
isRunning -
name -
Enclosing class:
DebugGoalSelectorCustomPayload

public static record DebugGoalSelectorCustomPayload.Goal(int priority, boolean isRunning, String name) extends Record
Mappings:
Namespace Name
named net/minecraft/network/packet/s2c/custom/DebugGoalSelectorCustomPayload$Goal
intermediary net/minecraft/class_8716$class_8717
official aao$a
named priority
intermediary comp_1690
official a
named isRunning
intermediary comp_1691
official b
named name
intermediary comp_1692
official c
  • Field Details

    • priority

      private final int priority
      The field for the priority record component.
    • isRunning

      private final boolean isRunning
      The field for the isRunning record component.
    • name

      private final String name
      The field for the name record component.
  • Constructor Details

    • Goal

      public Goal(PacketByteBuf buf)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/network/packet/s2c/custom/DebugGoalSelectorCustomPayload$Goal;<init>(Lnet/minecraft/network/PacketByteBuf;)V
      intermediary <init> Lnet/minecraft/class_8716$class_8717;<init>(Lnet/minecraft/class_2540;)V
      official <init> Laao$a;<init>(Lvv;)V
    • Goal

      public Goal(int int2, boolean bool, String string)
  • Method Details

    • write

      public void write(PacketByteBuf buf)
      Mappings:
      Namespace Name Mixin selector
      named write Lnet/minecraft/network/packet/s2c/custom/DebugGoalSelectorCustomPayload$Goal;write(Lnet/minecraft/network/PacketByteBuf;)V
      intermediary method_53035 Lnet/minecraft/class_8716$class_8717;method_53035(Lnet/minecraft/class_2540;)V
      official a Laao$a;a(Lvv;)V
    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • priority

      public int priority()
      Returns the value of the priority record component.
      Returns:
      the value of the priority record component
    • isRunning

      public boolean isRunning()
      Returns the value of the isRunning record component.
      Returns:
      the value of the isRunning record component
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component