Package net.minecraft
Record Class class_11114.class_11116
java.lang.Object
java.lang.Record
net.minecraft.class_11114.class_11116
- Record Components:
original-modified-biome-
- Enclosing class:
class_11114
public static record class_11114.class_11116(RegistryKey<Biome> original, RegistryKey<Biome> modified, Biome biome)
extends Record
- Mappings:
Namespace Name named net/minecraft/class_11114$class_11116intermediary net/minecraft/class_11114$class_11116official fce$bnamed originalintermediary comp_4011official anamed modifiedintermediary comp_4012official bnamed biomeintermediary comp_4013official c
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionclass_11116(RegistryKey<Biome> registryKey, RegistryKey<Biome> registryKey2, Biome biome) -
Method Summary
Modifier and TypeMethodDescriptionbiome()Returns the value of thebiomerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.modified()Returns the value of themodifiedrecord component.original()Returns the value of theoriginalrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
class_11116
-
-
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). -
original
Returns the value of theoriginalrecord component.- Returns:
- the value of the
originalrecord component
-
modified
Returns the value of themodifiedrecord component.- Returns:
- the value of the
modifiedrecord component
-
biome
Returns the value of thebiomerecord component.- Returns:
- the value of the
biomerecord component
-