Record Class PoiAddedDebugPayload
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.custom.PoiAddedDebugPayload
- All Implemented Interfaces:
CustomPacketPayload
public record PoiAddedDebugPayload(BlockPos pos, String poiType, int freeTicketCount)
extends Record
implements CustomPacketPayload
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload
CustomPacketPayload.FallbackProvider<B extends FriendlyByteBuf>, CustomPacketPayload.Type<T extends CustomPacketPayload>, CustomPacketPayload.TypeAndCodec<B extends FriendlyByteBuf,
T extends CustomPacketPayload> -
Field Summary
Modifier and TypeFieldDescriptionprivate final int
The field for thefreeTicketCount
record component.private final String
The field for thepoiType
record component.private final BlockPos
The field for thepos
record component.static final StreamCodec
<FriendlyByteBuf, PoiAddedDebugPayload> static final CustomPacketPayload.Type
<PoiAddedDebugPayload> -
Constructor Summary
ModifierConstructorDescriptionPoiAddedDebugPayload
(BlockPos pos, String poiType, int freeTicketCount) Creates an instance of aPoiAddedDebugPayload
record class.private
PoiAddedDebugPayload
(FriendlyByteBuf p_300736_) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.int
Returns the value of thefreeTicketCount
record component.final int
hashCode()
Returns a hash code value for this object.poiType()
Returns the value of thepoiType
record component.pos()
Returns the value of thepos
record component.final String
toString()
Returns a string representation of this record class.type()
private void
write
(FriendlyByteBuf p_298137_)
-
Field Details
-
pos
The field for thepos
record component. -
poiType
The field for thepoiType
record component. -
freeTicketCount
private final int freeTicketCountThe field for thefreeTicketCount
record component. -
STREAM_CODEC
-
TYPE
-
-
Constructor Details
-
PoiAddedDebugPayload
-
PoiAddedDebugPayload
Creates an instance of aPoiAddedDebugPayload
record class.- Parameters:
pos
- the value for thepos
record componentpoiType
- the value for thepoiType
record componentfreeTicketCount
- the value for thefreeTicketCount
record component
-
-
Method Details
-
write
-
type
- Specified by:
type
in interfaceCustomPacketPayload
-
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 '=='. -
pos
Returns the value of thepos
record component.- Returns:
- the value of the
pos
record component
-
poiType
Returns the value of thepoiType
record component.- Returns:
- the value of the
poiType
record component
-
freeTicketCount
public int freeTicketCount()Returns the value of thefreeTicketCount
record component.- Returns:
- the value of the
freeTicketCount
record component
-