Record Class TropicalFish.Variant
java.lang.Object
java.lang.Record
net.minecraft.world.entity.animal.TropicalFish.Variant
- Enclosing class:
TropicalFish
public static record TropicalFish.Variant(TropicalFish.Pattern pattern, DyeColor baseColor, DyeColor patternColor)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final DyeColorThe field for thebaseColorrecord component.static final com.mojang.serialization.Codec<TropicalFish.Variant> private final TropicalFish.PatternThe field for thepatternrecord component.private final DyeColorThe field for thepatternColorrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionVariant(int p_334003_) Variant(TropicalFish.Pattern pattern, DyeColor baseColor, DyeColor patternColor) Creates an instance of aVariantrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebaseColorrecord component.final booleanIndicates whether some other object is "equal to" this one.intfinal inthashCode()Returns a hash code value for this object.pattern()Returns the value of thepatternrecord component.Returns the value of thepatternColorrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
pattern
The field for thepatternrecord component. -
baseColor
The field for thebaseColorrecord component. -
patternColor
The field for thepatternColorrecord component. -
CODEC
-
-
Constructor Details
-
Variant
public Variant(int p_334003_) -
Variant
Creates an instance of aVariantrecord class.- Parameters:
pattern- the value for thepatternrecord componentbaseColor- the value for thebaseColorrecord componentpatternColor- the value for thepatternColorrecord component
-
-
Method Details
-
getPackedId
public int getPackedId() -
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). -
pattern
Returns the value of thepatternrecord component.- Returns:
- the value of the
patternrecord component
-
baseColor
Returns the value of thebaseColorrecord component.- Returns:
- the value of the
baseColorrecord component
-
patternColor
Returns the value of thepatternColorrecord component.- Returns:
- the value of the
patternColorrecord component
-