Record Class Biome.Weather

java.lang.Object
java.lang.Record
net.minecraft.world.biome.Biome.Weather
Record Components:
hasPrecipitation -
temperature -
temperatureModifier -
downfall -
Enclosing class:
Biome

private static record Biome.Weather(boolean hasPrecipitation, float temperature, Biome.TemperatureModifier temperatureModifier, float downfall) extends Record
Mappings:
Namespace Name
named net/minecraft/world/biome/Biome$Weather
intermediary net/minecraft/class_1959$class_5482
official dcz$b
named hasPrecipitation
intermediary comp_1187
official b
named temperature
intermediary comp_844
official c
named temperatureModifier
intermediary comp_845
official d
named downfall
intermediary comp_846
official e
  • Field Details

    • hasPrecipitation

      private final boolean hasPrecipitation
      The field for the hasPrecipitation record component.
    • temperature

      private final float temperature
      The field for the temperature record component.
    • temperatureModifier

      private final Biome.TemperatureModifier temperatureModifier
      The field for the temperatureModifier record component.
    • downfall

      private final float downfall
      The field for the downfall record component.
    • CODEC

      public static final com.mojang.serialization.MapCodec<Biome.Weather> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/world/biome/Biome$Weather;CODEC:Lcom/mojang/serialization/MapCodec;
      intermediary field_26398 Lnet/minecraft/class_1959$class_5482;field_26398:Lcom/mojang/serialization/MapCodec;
      official a Ldcz$b;a:Lcom/mojang/serialization/MapCodec;
  • Constructor Details

    • Weather

      Weather(boolean bool, float temperature, Biome.TemperatureModifier temperatureModifier, float downfall)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/world/biome/Biome$Weather;<init>(ZFLnet/minecraft/world/biome/Biome$TemperatureModifier;F)V
      intermediary <init> Lnet/minecraft/class_1959$class_5482;<init>(ZFLnet/minecraft/class_1959$class_5484;F)V
      official <init> Ldcz$b;<init>(ZFLdcz$d;F)V
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • hasPrecipitation

      public boolean hasPrecipitation()
      Returns the value of the hasPrecipitation record component.
      Returns:
      the value of the hasPrecipitation record component
    • temperature

      public float temperature()
      Returns the value of the temperature record component.
      Returns:
      the value of the temperature record component
    • temperatureModifier

      public Biome.TemperatureModifier temperatureModifier()
      Returns the value of the temperatureModifier record component.
      Returns:
      the value of the temperatureModifier record component
    • downfall

      public float downfall()
      Returns the value of the downfall record component.
      Returns:
      the value of the downfall record component