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 - aaf$a- named - priority- intermediary - comp_1690- official - a- named - isRunning- intermediary - comp_1691- official - b- named - name- intermediary - comp_1692- official - c
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of theisRunningrecord component.name()Returns the value of thenamerecord component.intpriority()Returns the value of thepriorityrecord component.final StringtoString()Returns a string representation of this record class.voidwrite(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>- Laaf$a;<init>(Lvl;)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- Laaf$a;a(Lvl;)V
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
prioritypublic int priority()Returns the value of thepriorityrecord component.- Returns:
- the value of the priorityrecord component
 
- 
isRunningpublic boolean isRunning()Returns the value of theisRunningrecord component.- Returns:
- the value of the isRunningrecord component
 
- 
nameReturns the value of thenamerecord component.- Returns:
- the value of the namerecord component
 
 
-