Record Class SpawnPositionPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.SpawnPositionPacket
- All Implemented Interfaces:
SendablePacket
,ServerPacket
,ServerPacket.Play
public record SpawnPositionPacket(@NotNull Point position, float angle)
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
ConstructorsConstructorDescriptionSpawnPositionPacket
(@NotNull Point position, float angle) Creates an instance of aSpawnPositionPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionfloat
angle()
Returns the value of theangle
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.@NotNull Point
position()
Returns the value of theposition
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
SpawnPositionPacket
Creates an instance of aSpawnPositionPacket
record class.- Parameters:
position
- the value for theposition
record componentangle
- the value for theangle
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with thecompare
method from their corresponding wrapper classes. -
position
Returns the value of theposition
record component.- Returns:
- the value of the
position
record component
-
angle
public float angle()Returns the value of theangle
record component.- Returns:
- the value of the
angle
record component
-