Record Class AttributeImpl

java.lang.Object
java.lang.Record
net.minestom.server.attribute.AttributeImpl
All Implemented Interfaces:
net.kyori.adventure.key.Keyed, Attribute, ProtocolObject

public record AttributeImpl(Registry.AttributeEntry registry, int id) extends Record implements Attribute, ProtocolObject
Represents a living entity attribute.
  • Constructor Details

    • AttributeImpl

      public AttributeImpl(Registry.AttributeEntry registry, int id)
      Creates an instance of a AttributeImpl record class.
      Parameters:
      registry - the value for the registry record component
      id - the value for the id record component
  • Method Details

    • namespace

      @NotNull public @NotNull NamespaceID namespace()
      Specified by:
      namespace in interface Attribute
      Specified by:
      namespace in interface ProtocolObject
    • defaultValue

      public float defaultValue()
      Specified by:
      defaultValue in interface Attribute
    • maxValue

      public float maxValue()
      Specified by:
      maxValue in interface Attribute
    • mineValue

      public float mineValue()
      Specified by:
      mineValue in interface Attribute
    • clientSync

      public boolean clientSync()
      Specified by:
      clientSync in interface Attribute
    • translationKey

      @NotNull public @NotNull String translationKey()
      Specified by:
      translationKey in interface Attribute
    • 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.
    • registry

      public Registry.AttributeEntry registry()
      Returns the value of the registry record component.
      Specified by:
      registry in interface Attribute
      Returns:
      the value of the registry record component
    • id

      public int id()
      Returns the value of the id record component.
      Returns:
      the value of the id record component