Record Class DebugStructuresCustomPayload.class_8727
java.lang.Object
java.lang.Record
net.minecraft.network.packet.s2c.custom.DebugStructuresCustomPayload.class_8727
- Record Components:
boundingBox
-isStart
-
- Enclosing class:
DebugStructuresCustomPayload
public static record DebugStructuresCustomPayload.class_8727(BlockBox boundingBox, boolean isStart)
extends Record
- Mappings:
Namespace Name official wc$a
intermediary net/minecraft/class_8726$class_8727
named net/minecraft/network/packet/s2c/custom/DebugStructuresCustomPayload$class_8727
official a
intermediary comp_1714
named boundingBox
official b
intermediary comp_1715
named isStart
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BlockBox
The field for theboundingBox
record component.private final boolean
The field for theisStart
record component. -
Constructor Summary
ConstructorsConstructorDescriptionclass_8727
(PacketByteBuf packetByteBuf) class_8727
(BlockBox blockBox, boolean bool) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theboundingBox
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
isStart()
Returns the value of theisStart
record component.void
method_53040
(PacketByteBuf packetByteBuf) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
boundingBox
The field for theboundingBox
record component. -
isStart
private final boolean isStartThe field for theisStart
record component.
-
-
Constructor Details
-
class_8727
-
class_8727
-
-
Method Details
-
method_53040
- Mappings:
Namespace Name Mixin selector official a
Lwc$a;a(Lsh;)V
intermediary method_53040
Lnet/minecraft/class_8726$class_8727;method_53040(Lnet/minecraft/class_2540;)V
named method_53040
Lnet/minecraft/network/packet/s2c/custom/DebugStructuresCustomPayload$class_8727;method_53040(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 '=='. -
boundingBox
Returns the value of theboundingBox
record component.- Returns:
- the value of the
boundingBox
record component
-
isStart
public boolean isStart()Returns the value of theisStart
record component.- Returns:
- the value of the
isStart
record component
-