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 net.minestom.server.network.packet.server.ServerPacket
ServerPacket.ComponentHolding, ServerPacket.Configuration, ServerPacket.Login, ServerPacket.Play, ServerPacket.Status
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final byte
static final byte
static final byte
static final byte
static final NetworkBuffer.Type
<PlayerAbilitiesPacket> -
Constructor Summary
ConstructorsConstructorDescriptionPlayerAbilitiesPacket
(byte flags, float flyingSpeed, float walkingSpeed) Creates an instance of aPlayerAbilitiesPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.byte
flags()
Returns the value of theflags
record component.float
Returns the value of theflyingSpeed
record component.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.float
Returns the value of thewalkingSpeed
record 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 aPlayerAbilitiesPacket
record class.- Parameters:
flags
- the value for theflags
record componentflyingSpeed
- the value for theflyingSpeed
record componentwalkingSpeed
- the value for thewalkingSpeed
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. -
flags
public byte flags()Returns the value of theflags
record component.- Returns:
- the value of the
flags
record component
-
flyingSpeed
public float flyingSpeed()Returns the value of theflyingSpeed
record component.- Returns:
- the value of the
flyingSpeed
record component
-
walkingSpeed
public float walkingSpeed()Returns the value of thewalkingSpeed
record component.- Returns:
- the value of the
walkingSpeed
record component
-