Record Class Attribute
java.lang.Object
java.lang.Record
com.github.darksoulq.abyssallib.world.data.attribute.Attribute
- Record Components:
key- The unique key identifying this attribute definition.defaultValue- The default base value used if no data is stored for this attribute.
Represents a definition for a custom numeric attribute.
Attributes define a base system for calculating dynamic entity stats.
-
Constructor Summary
ConstructorsConstructorDescriptionAttribute(net.kyori.adventure.key.Key key, double defaultValue) Constructs a new attribute definition. -
Method Summary
Modifier and TypeMethodDescriptiondoubleReturns the default base value of this attribute.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.net.kyori.adventure.key.Keykey()Returns the unique key used to identify this attribute.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Attribute
public Attribute(net.kyori.adventure.key.Key key, double defaultValue) Constructs a new attribute definition.- Parameters:
key- The unique key for this attribute.defaultValue- The fallback base value when not explicitly set.
-
-
Method Details
-
key
public net.kyori.adventure.key.Key key()Returns the unique key used to identify this attribute.- Returns:
- The attribute key.
-
defaultValue
public double defaultValue()Returns the default base value of this attribute.- Returns:
- The default value.
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes.
-