Record Class RegistryData.PotionEffectEntry
java.lang.Object
java.lang.Record
net.minestom.server.registry.RegistryData.PotionEffectEntry
- All Implemented Interfaces:
RegistryData.Entry
- Enclosing class:
RegistryData
public static record RegistryData.PotionEffectEntry(net.kyori.adventure.key.Key key, int id, String translationKey, int color, boolean isInstantaneous)
extends Record
implements RegistryData.Entry
-
Constructor Summary
ConstructorsConstructorDescriptionPotionEffectEntry
(String namespace, RegistryData.Properties main) PotionEffectEntry
(net.kyori.adventure.key.Key key, int id, String translationKey, int color, boolean isInstantaneous) Creates an instance of aPotionEffectEntry
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
color()
Returns the value of thecolor
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.boolean
Returns the value of theisInstantaneous
record component.net.kyori.adventure.key.Key
key()
Returns the value of thekey
record component.final String
toString()
Returns a string representation of this record class.Returns the value of thetranslationKey
record component.
-
Constructor Details
-
PotionEffectEntry
-
PotionEffectEntry
public PotionEffectEntry(net.kyori.adventure.key.Key key, int id, String translationKey, int color, boolean isInstantaneous) Creates an instance of aPotionEffectEntry
record class.- Parameters:
key
- the value for thekey
record componentid
- the value for theid
record componenttranslationKey
- the value for thetranslationKey
record componentcolor
- the value for thecolor
record componentisInstantaneous
- the value for theisInstantaneous
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
-
color
public int color()Returns the value of thecolor
record component.- Returns:
- the value of the
color
record component
-
isInstantaneous
public boolean isInstantaneous()Returns the value of theisInstantaneous
record component.- Returns:
- the value of the
isInstantaneous
record component
-