Record Class RegistryData.AttributeEntry
java.lang.Object
java.lang.Record
net.minestom.server.registry.RegistryData.AttributeEntry
- All Implemented Interfaces:
RegistryData.Entry
- Enclosing class:
RegistryData
public static record RegistryData.AttributeEntry(net.kyori.adventure.key.Key key, int id, String translationKey, double defaultValue, boolean clientSync, double maxValue, double minValue)
extends Record
implements RegistryData.Entry
-
Constructor Summary
ConstructorsConstructorDescriptionAttributeEntry
(String namespace, RegistryData.Properties main) AttributeEntry
(net.kyori.adventure.key.Key key, int id, String translationKey, double defaultValue, boolean clientSync, double maxValue, double minValue) Creates an instance of aAttributeEntry
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the value of theclientSync
record component.double
Returns the value of thedefaultValue
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.int
id()
Returns the value of theid
record component.net.kyori.adventure.key.Key
key()
Returns the value of thekey
record component.double
maxValue()
Returns the value of themaxValue
record component.double
minValue()
Returns the value of theminValue
record component.final String
toString()
Returns a string representation of this record class.Returns the value of thetranslationKey
record component.
-
Constructor Details
-
AttributeEntry
-
AttributeEntry
public AttributeEntry(net.kyori.adventure.key.Key key, int id, String translationKey, double defaultValue, boolean clientSync, double maxValue, double minValue) Creates an instance of aAttributeEntry
record class.- Parameters:
key
- the value for thekey
record componentid
- the value for theid
record componenttranslationKey
- the value for thetranslationKey
record componentdefaultValue
- the value for thedefaultValue
record componentclientSync
- the value for theclientSync
record componentmaxValue
- the value for themaxValue
record componentminValue
- the value for theminValue
record component
-
-
Method Details
-
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 thecompare
method from their corresponding wrapper classes. -
key
public net.kyori.adventure.key.Key key()Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-
id
public int id()Returns the value of theid
record component.- Returns:
- the value of the
id
record component
-
translationKey
Returns the value of thetranslationKey
record component.- Returns:
- the value of the
translationKey
record component
-
defaultValue
public double defaultValue()Returns the value of thedefaultValue
record component.- Returns:
- the value of the
defaultValue
record component
-
clientSync
public boolean clientSync()Returns the value of theclientSync
record component.- Returns:
- the value of the
clientSync
record component
-
maxValue
public double maxValue()Returns the value of themaxValue
record component.- Returns:
- the value of the
maxValue
record component
-
minValue
public double minValue()Returns the value of theminValue
record component.- Returns:
- the value of the
minValue
record component
-