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 official wc$a
intermediary net/minecraft/class_8716$class_8717
named net/minecraft/network/packet/s2c/custom/DebugGoalSelectorCustomPayload$Goal
official a
intermediary comp_1690
named priority
official b
intermediary comp_1691
named isRunning
official c
intermediary comp_1692
named name
-
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 official <init>
Lwc$a;<init>(Lso;)V
intermediary <init>
Lnet/minecraft/class_8716$class_8717;<init>(Lnet/minecraft/class_2540;)V
named <init>
Lnet/minecraft/network/packet/s2c/custom/DebugGoalSelectorCustomPayload$Goal;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
Goal
-
-
Method Details
-
write
- Mappings:
Namespace Name Mixin selector official a
Lwc$a;a(Lso;)V
intermediary method_53035
Lnet/minecraft/class_8716$class_8717;method_53035(Lnet/minecraft/class_2540;)V
named write
Lnet/minecraft/network/packet/s2c/custom/DebugGoalSelectorCustomPayload$Goal;write(Lnet/minecraft/network/PacketByteBuf;)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
-