Record Class EntitySoundEffectPacket
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.EntitySoundEffectPacket
- All Implemented Interfaces:
NetworkBuffer.Writer
,SendablePacket
,ServerPacket
,ServerPacket.Play
public record EntitySoundEffectPacket(@NotNull SoundEvent soundEvent, Sound.Source source, int entityId, float volume, float pitch, long seed)
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
-
Constructor Summary
ConstructorDescriptionEntitySoundEffectPacket
(@NotNull NetworkBuffer reader) EntitySoundEffectPacket
(@NotNull SoundEvent soundEvent, Sound.Source source, int entityId, float volume, float pitch, long seed) Creates an instance of aEntitySoundEffectPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
entityId()
Returns the value of theentityId
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.float
pitch()
Returns the value of thepitch
record component.int
playId()
long
seed()
Returns the value of theseed
record component.@NotNull SoundEvent
Returns the value of thesoundEvent
record component.source()
Returns the value of thesource
record component.final String
toString()
Returns a string representation of this record class.float
volume()
Returns the value of thevolume
record component.void
write
(@NotNull NetworkBuffer writer) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minestom.server.network.packet.server.ServerPacket
getId
-
Constructor Details
-
EntitySoundEffectPacket
-
EntitySoundEffectPacket
public EntitySoundEffectPacket(@NotNull @NotNull SoundEvent soundEvent, @NotNull Sound.Source source, int entityId, float volume, float pitch, long seed) Creates an instance of aEntitySoundEffectPacket
record class.- Parameters:
soundEvent
- the value for thesoundEvent
record componentsource
- the value for thesource
record componententityId
- the value for theentityId
record componentvolume
- the value for thevolume
record componentpitch
- the value for thepitch
record componentseed
- the value for theseed
record component
-
-
Method Details
-
write
- Specified by:
write
in interfaceNetworkBuffer.Writer
-
playId
public int playId()- Specified by:
playId
in 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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
soundEvent
Returns the value of thesoundEvent
record component.- Returns:
- the value of the
soundEvent
record component
-
source
Returns the value of thesource
record component.- Returns:
- the value of the
source
record component
-
entityId
public int entityId()Returns the value of theentityId
record component.- Returns:
- the value of the
entityId
record component
-
volume
public float volume()Returns the value of thevolume
record component.- Returns:
- the value of the
volume
record component
-
pitch
public float pitch()Returns the value of thepitch
record component.- Returns:
- the value of the
pitch
record component
-
seed
public long seed()Returns the value of theseed
record component.- Returns:
- the value of the
seed
record component
-