Record Class SoundEffectPacket

java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.SoundEffectPacket
All Implemented Interfaces:
NetworkBuffer.Writer, SendablePacket, ServerPacket, ServerPacket.Play

public record SoundEffectPacket(@Nullable SoundEvent soundEvent, @Nullable String soundName, @Nullable Float range, @NotNull Sound.Source source, int x, int y, int z, float volume, float pitch, long seed) extends Record implements ServerPacket.Play
  • Constructor Details

    • SoundEffectPacket

      public SoundEffectPacket(@Nullable @Nullable SoundEvent soundEvent, @Nullable @Nullable String soundName, @Nullable @Nullable Float range, @NotNull @NotNull Sound.Source source, int x, int y, int z, float volume, float pitch, long seed)
      Creates an instance of a SoundEffectPacket record class.
      Parameters:
      soundEvent - the value for the soundEvent record component
      soundName - the value for the soundName record component
      range - the value for the range record component
      source - the value for the source record component
      x - the value for the x record component
      y - the value for the y record component
      z - the value for the z record component
      volume - the value for the volume record component
      pitch - the value for the pitch record component
      seed - the value for the seed record component
    • SoundEffectPacket

      public SoundEffectPacket(@NotNull @NotNull SoundEvent soundEvent, @Nullable @Nullable Float range, @NotNull @NotNull Sound.Source source, @NotNull @NotNull Point position, float volume, float pitch, long seed)
    • SoundEffectPacket

      public SoundEffectPacket(@NotNull @NotNull String soundName, @Nullable @Nullable Float range, @NotNull @NotNull Sound.Source source, @NotNull @NotNull Point position, float volume, float pitch, long seed)
    • SoundEffectPacket

      public SoundEffectPacket(@NotNull @NotNull NetworkBuffer reader)
  • Method Details

    • write

      public void write(@NotNull @NotNull NetworkBuffer writer)
      Specified by:
      write in interface NetworkBuffer.Writer
    • playId

      public int playId()
      Specified by:
      playId in interface ServerPacket.Play
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • soundEvent

      @Nullable public @Nullable SoundEvent soundEvent()
      Returns the value of the soundEvent record component.
      Returns:
      the value of the soundEvent record component
    • soundName

      @Nullable public @Nullable String soundName()
      Returns the value of the soundName record component.
      Returns:
      the value of the soundName record component
    • range

      @Nullable public @Nullable Float range()
      Returns the value of the range record component.
      Returns:
      the value of the range record component
    • source

      @NotNull public @NotNull Sound.Source source()
      Returns the value of the source record component.
      Returns:
      the value of the source record component
    • x

      public int x()
      Returns the value of the x record component.
      Returns:
      the value of the x record component
    • y

      public int y()
      Returns the value of the y record component.
      Returns:
      the value of the y record component
    • z

      public int z()
      Returns the value of the z record component.
      Returns:
      the value of the z record component
    • volume

      public float volume()
      Returns the value of the volume record component.
      Returns:
      the value of the volume record component
    • pitch

      public float pitch()
      Returns the value of the pitch record component.
      Returns:
      the value of the pitch record component
    • seed

      public long seed()
      Returns the value of the seed record component.
      Returns:
      the value of the seed record component