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 abd$a
named priority
intermediary comp_1690
official a
named isRunning
intermediary comp_1691
official b
named name
intermediary comp_1692
official c
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
Returns the value of theisRunning
record component.name()
Returns the value of thename
record component.int
priority()
Returns the value of thepriority
record component.final String
toString()
Returns a string representation of this record class.void
write
(PacketByteBuf buf)
-
Field Details
-
Constructor Details
-
Goal
- 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>
Labd$a;<init>(Lwm;)V
-
Goal
-
-
Method Details
-
write
- 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
Labd$a;a(Lwm;)V
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
priority
public int priority()Returns the value of thepriority
record component.- Returns:
- the value of the
priority
record component
-
isRunning
public boolean isRunning()Returns the value of theisRunning
record component.- Returns:
- the value of the
isRunning
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-