Record Class PlayerAbilitiesPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.PlayerAbilitiesPacket
- All Implemented Interfaces:
SendablePacket, ServerPacket, ServerPacket.Play
public record PlayerAbilitiesPacket(byte flags, float flyingSpeed, float walkingSpeed)
extends Record
implements ServerPacket.Play
-
Nested Class Summary
Nested classes/interfaces inherited from interface ServerPacket
ServerPacket.ComponentHolding, ServerPacket.Configuration, ServerPacket.Login, ServerPacket.Play, ServerPacket.Status -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final bytestatic final bytestatic final bytestatic final bytestatic final NetworkBuffer.Type<PlayerAbilitiesPacket> -
Constructor Summary
ConstructorsConstructorDescriptionPlayerAbilitiesPacket(byte flags, float flyingSpeed, float walkingSpeed) Creates an instance of aPlayerAbilitiesPacketrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.byteflags()Returns the value of theflagsrecord component.floatReturns the value of theflyingSpeedrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.floatReturns the value of thewalkingSpeedrecord component.
-
Field Details
-
FLAG_INVULNERABLE
public static final byte FLAG_INVULNERABLE- See Also:
-
FLAG_FLYING
public static final byte FLAG_FLYING- See Also:
-
FLAG_ALLOW_FLYING
public static final byte FLAG_ALLOW_FLYING- See Also:
-
FLAG_INSTANT_BREAK
public static final byte FLAG_INSTANT_BREAK- See Also:
-
SERIALIZER
-
-
Constructor Details
-
PlayerAbilitiesPacket
public PlayerAbilitiesPacket(byte flags, float flyingSpeed, float walkingSpeed) Creates an instance of aPlayerAbilitiesPacketrecord class.- Parameters:
flags- the value for theflagsrecord componentflyingSpeed- the value for theflyingSpeedrecord componentwalkingSpeed- the value for thewalkingSpeedrecord 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 thecomparemethod from their corresponding wrapper classes. -
flags
public byte flags()Returns the value of theflagsrecord component.- Returns:
- the value of the
flagsrecord component
-
flyingSpeed
public float flyingSpeed()Returns the value of theflyingSpeedrecord component.- Returns:
- the value of the
flyingSpeedrecord component
-
walkingSpeed
public float walkingSpeed()Returns the value of thewalkingSpeedrecord component.- Returns:
- the value of the
walkingSpeedrecord component
-