Record Class PoiTicketCountDebugPayload
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.custom.PoiTicketCountDebugPayload
- All Implemented Interfaces:
CustomPacketPayload
public record PoiTicketCountDebugPayload(BlockPos pos, 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
FieldsModifier and TypeFieldDescriptionprivate final intThe field for thefreeTicketCountrecord component.private final BlockPosThe field for theposrecord component.static final StreamCodec<FriendlyByteBuf, PoiTicketCountDebugPayload> static final CustomPacketPayload.Type<PoiTicketCountDebugPayload> -
Constructor Summary
ConstructorsModifierConstructorDescriptionPoiTicketCountDebugPayload(BlockPos pos, int freeTicketCount) Creates an instance of aPoiTicketCountDebugPayloadrecord class.privatePoiTicketCountDebugPayload(FriendlyByteBuf p_295976_) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.intReturns the value of thefreeTicketCountrecord component.final inthashCode()Returns a hash code value for this object.pos()Returns the value of theposrecord component.final StringtoString()Returns a string representation of this record class.type()private voidwrite(FriendlyByteBuf p_295476_)
-
Field Details
-
pos
The field for theposrecord component. -
freeTicketCount
private final int freeTicketCountThe field for thefreeTicketCountrecord component. -
STREAM_CODEC
-
TYPE
-
-
Constructor Details
-
PoiTicketCountDebugPayload
-
PoiTicketCountDebugPayload
Creates an instance of aPoiTicketCountDebugPayloadrecord class.- Parameters:
pos- the value for theposrecord componentfreeTicketCount- the value for thefreeTicketCountrecord component
-
-
Method Details
-
write
-
type
- Specified by:
typein 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 theposrecord component.- Returns:
- the value of the
posrecord component
-
freeTicketCount
public int freeTicketCount()Returns the value of thefreeTicketCountrecord component.- Returns:
- the value of the
freeTicketCountrecord component
-