Package net.minestom.server.registry
Record Class Registry.AttributeEntry
java.lang.Object
java.lang.Record
net.minestom.server.registry.Registry.AttributeEntry
- All Implemented Interfaces:
Registry.Entry
- Enclosing class:
Registry
public static record Registry.AttributeEntry(@NotNull NamespaceID namespace, int id, @NotNull String translationKey, float defaultValue, boolean clientSync, float maxValue, float minValue, @Nullable Registry.Properties custom)
extends Record
implements Registry.Entry
-
Constructor Summary
ConstructorDescriptionAttributeEntry
(String namespace, Registry.Properties main, Registry.Properties custom) AttributeEntry
(@NotNull NamespaceID namespace, int id, @NotNull String translationKey, float defaultValue, boolean clientSync, float maxValue, float minValue, @Nullable Registry.Properties custom) Creates an instance of aAttributeEntry
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns the value of theclientSync
record component.@Nullable Registry.Properties
custom()
Returns the value of thecustom
record component.float
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.float
maxValue()
Returns the value of themaxValue
record component.float
minValue()
Returns the value of theminValue
record component.@NotNull NamespaceID
Returns the value of thenamespace
record component.final String
toString()
Returns a string representation of this record class.@NotNull String
Returns the value of thetranslationKey
record component.
-
Constructor Details
-
AttributeEntry
-
AttributeEntry
public AttributeEntry(@NotNull @NotNull NamespaceID namespace, int id, @NotNull @NotNull String translationKey, float defaultValue, boolean clientSync, float maxValue, float minValue, @Nullable @Nullable Registry.Properties custom) Creates an instance of aAttributeEntry
record class.- Parameters:
namespace
- the value for thenamespace
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 componentcustom
- the value for thecustom
record component
-
-
Method Details
-
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. -
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. -
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 '=='. -
namespace
Returns the value of thenamespace
record component.- Returns:
- the value of the
namespace
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 float 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 float maxValue()Returns the value of themaxValue
record component.- Returns:
- the value of the
maxValue
record component
-
minValue
public float minValue()Returns the value of theminValue
record component.- Returns:
- the value of the
minValue
record component
-
custom
Returns the value of thecustom
record component.- Specified by:
custom
in interfaceRegistry.Entry
- Returns:
- the value of the
custom
record component
-