Module net.minestom.server
Record Class FrogVariantImpl
java.lang.Object
java.lang.Record
net.minestom.server.entity.metadata.animal.FrogVariantImpl
- All Implemented Interfaces:
FrogVariant
public record FrogVariantImpl(net.kyori.adventure.key.Key assetId)
extends Record
implements FrogVariant
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final RegistryKey
<FrogVariant> static final RegistryKey
<FrogVariant> static final RegistryKey
<FrogVariant> Fields inherited from interface net.minestom.server.entity.metadata.animal.FrogVariant
CODEC, NETWORK_TYPE, REGISTRY_CODEC
-
Constructor Summary
ConstructorsConstructorDescriptionFrogVariantImpl
(net.kyori.adventure.key.Key assetId) Creates an instance of aFrogVariantImpl
record class. -
Method Summary
Modifier and TypeMethodDescriptionnet.kyori.adventure.key.Key
assetId()
Returns the value of theassetId
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.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
WARM
-
COLD
-
TEMPERATE
-
-
Constructor Details
-
FrogVariantImpl
public FrogVariantImpl(net.kyori.adventure.key.Key assetId) Creates an instance of aFrogVariantImpl
record class.- Parameters:
assetId
- the value for theassetId
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
assetId
public net.kyori.adventure.key.Key assetId()Returns the value of theassetId
record component.- Specified by:
assetId
in interfaceFrogVariant
- Returns:
- the value of the
assetId
record component
-