Record Class SoundBuilder.SoundFileEntry

java.lang.Object
java.lang.Record
de.luckymcdev.foundryengine.common.builder.sound.SoundBuilder.SoundFileEntry
Enclosing class:
SoundBuilder

public static record SoundBuilder.SoundFileEntry(net.minecraft.resources.Identifier location, float volume, float pitch, int weight, boolean stream, int attenuationDistance, boolean preload) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    SoundFileEntry(net.minecraft.resources.Identifier location, float volume, float pitch, int weight, boolean stream, int attenuationDistance, boolean preload)
    Creates an instance of a SoundFileEntry record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the value of the attenuationDistance record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    net.minecraft.resources.Identifier
    Returns the value of the location record component.
    float
    Returns the value of the pitch record component.
    boolean
    Returns the value of the preload record component.
    boolean
    Returns the value of the stream record component.
    final String
    Returns a string representation of this record class.
    float
    Returns the value of the volume record component.
    int
    Returns the value of the weight record component.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • SoundFileEntry

      public SoundFileEntry(net.minecraft.resources.Identifier location, float volume, float pitch, int weight, boolean stream, int attenuationDistance, boolean preload)
      Creates an instance of a SoundFileEntry record class.
      Parameters:
      location - the value for the location record component
      volume - the value for the volume record component
      pitch - the value for the pitch record component
      weight - the value for the weight record component
      stream - the value for the stream record component
      attenuationDistance - the value for the attenuationDistance record component
      preload - the value for the preload record component
  • Method Details

    • 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 the compare method from their corresponding wrapper classes.
      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.
    • location

      public net.minecraft.resources.Identifier location()
      Returns the value of the location record component.
      Returns:
      the value of the location 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
    • weight

      public int weight()
      Returns the value of the weight record component.
      Returns:
      the value of the weight record component
    • stream

      public boolean stream()
      Returns the value of the stream record component.
      Returns:
      the value of the stream record component
    • attenuationDistance

      public int attenuationDistance()
      Returns the value of the attenuationDistance record component.
      Returns:
      the value of the attenuationDistance record component
    • preload

      public boolean preload()
      Returns the value of the preload record component.
      Returns:
      the value of the preload record component