Record Class PlayerAbilitiesPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.PlayerAbilitiesPacket
- All Implemented Interfaces:
NetworkBuffer.Writer,SendablePacket,ServerPacket
public record PlayerAbilitiesPacket(byte flags, float flyingSpeed, float walkingSpeed)
extends Record
implements ServerPacket
-
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.intgetId(@NotNull ConnectionState state) Gets the id of this packet.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.voidwrite(@NotNull NetworkBuffer writer)
-
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
-
getId
Description copied from interface:ServerPacketGets the id of this packet.Written in the final buffer header so it needs to match the client id.
- Specified by:
getIdin interfaceServerPacket- Returns:
- the id of this packet
-
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
-