Record Class CollectItemPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.CollectItemPacket
- All Implemented Interfaces:
SendablePacket
,ServerPacket
,ServerPacket.Play
public record CollectItemPacket(int collectedEntityId, int collectorEntityId, int pickupItemCount)
extends Record
implements ServerPacket.Play
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minestom.server.network.packet.server.ServerPacket
ServerPacket.ComponentHolding, ServerPacket.Configuration, ServerPacket.Login, ServerPacket.Play, ServerPacket.Status
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCollectItemPacket
(int collectedEntityId, int collectorEntityId, int pickupItemCount) Creates an instance of aCollectItemPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns the value of thecollectedEntityId
record component.int
Returns the value of thecollectorEntityId
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.int
Returns the value of thepickupItemCount
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
CollectItemPacket
public CollectItemPacket(int collectedEntityId, int collectorEntityId, int pickupItemCount) Creates an instance of aCollectItemPacket
record class.- Parameters:
collectedEntityId
- the value for thecollectedEntityId
record componentcollectorEntityId
- the value for thecollectorEntityId
record componentpickupItemCount
- the value for thepickupItemCount
record component
-
-
Method Details
-
toString
-
hashCode
-
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. All components in this record class are compared with thecompare
method from their corresponding wrapper classes. -
collectedEntityId
public int collectedEntityId()Returns the value of thecollectedEntityId
record component.- Returns:
- the value of the
collectedEntityId
record component
-
collectorEntityId
public int collectorEntityId()Returns the value of thecollectorEntityId
record component.- Returns:
- the value of the
collectorEntityId
record component
-
pickupItemCount
public int pickupItemCount()Returns the value of thepickupItemCount
record component.- Returns:
- the value of the
pickupItemCount
record component
-