Record Class PlayerAbilitiesPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.PlayerAbilitiesPacket
- All Implemented Interfaces:
NetworkBuffer.Writer,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 net.minestom.server.network.packet.server.ServerPacket
ServerPacket.ComponentHolding, ServerPacket.Configuration, ServerPacket.Login, ServerPacket.Play, ServerPacket.Status -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final bytestatic final bytestatic final bytestatic final byte -
Constructor Summary
ConstructorsConstructorDescriptionPlayerAbilitiesPacket(byte flags, float flyingSpeed, float walkingSpeed) Creates an instance of aPlayerAbilitiesPacketrecord class.PlayerAbilitiesPacket(@NotNull NetworkBuffer reader) -
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.intplayId()final StringtoString()Returns a string representation of this record class.floatReturns the value of thewalkingSpeedrecord component.voidwrite(@NotNull NetworkBuffer writer) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minestom.server.network.packet.server.ServerPacket
getId
-
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:
-
-
Constructor Details
-
PlayerAbilitiesPacket
-
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
-
write
- Specified by:
writein interfaceNetworkBuffer.Writer
-
playId
public int playId()- Specified by:
playIdin interfaceServerPacket.Play
-
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. All components in this record class are compared with '=='. -
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
-