Package net.minecraft.entity.passive
Record Class TropicalFishEntity.Variant
java.lang.Object
java.lang.Record
net.minecraft.entity.passive.TropicalFishEntity.Variant
- Record Components:
pattern-baseColor-patternColor-
- Enclosing class:
TropicalFishEntity
public static record TropicalFishEntity.Variant(TropicalFishEntity.Pattern pattern, DyeColor baseColor, DyeColor patternColor)
extends Record
- Mappings:
Namespace Name named net/minecraft/entity/passive/TropicalFishEntity$Variantintermediary net/minecraft/class_1474$class_7992official clb$dnamed patternintermediary comp_1177official bnamed baseColorintermediary comp_1178official cnamed patternColorintermediary comp_1179official d
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final DyeColorThe field for thebaseColorrecord component.static final com.mojang.serialization.Codec<TropicalFishEntity.Variant> private final TropicalFishEntity.PatternThe field for thepatternrecord component.private final DyeColorThe field for thepatternColorrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionVariant(int id) Variant(TropicalFishEntity.Pattern pattern, DyeColor dyeColor, DyeColor dyeColor2) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebaseColorrecord component.final booleanIndicates whether some other object is "equal to" this one.intgetId()final 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
- Mappings:
Namespace Name Mixin selector named CODECLnet/minecraft/entity/passive/TropicalFishEntity$Variant;CODEC:Lcom/mojang/serialization/Codec;intermediary field_49236Lnet/minecraft/class_1474$class_7992;field_49236:Lcom/mojang/serialization/Codec;official aLclb$d;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
Variant
public Variant(int id) - Mappings:
Namespace Name Mixin selector named <init>Lnet/minecraft/entity/passive/TropicalFishEntity$Variant;<init>(I)Vintermediary <init>Lnet/minecraft/class_1474$class_7992;<init>(I)Vofficial <init>Lclb$d;<init>(I)V
-
Variant
-
-
Method Details
-
getId
public int getId()- Mappings:
Namespace Name Mixin selector named getIdLnet/minecraft/entity/passive/TropicalFishEntity$Variant;getId()Iintermediary method_47872Lnet/minecraft/class_1474$class_7992;method_47872()Iofficial aLclb$d;a()I
-
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
-