Package net.minecraft
Record Class class_8437
java.lang.Object
java.lang.Record
net.minecraft.class_8437
- Record Components:
radius
-depth
-
- All Implemented Interfaces:
FeatureConfig
public record class_8437(IntProvider radius, IntProvider depth)
extends Record
implements FeatureConfig
- Mappings:
Namespace Name official dqx
intermediary net/minecraft/class_8437
named net/minecraft/class_8437
official b
intermediary comp_1442
named radius
official c
intermediary comp_1443
named depth
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final IntProvider
The field for thedepth
record component.static final com.mojang.serialization.Codec<class_8437>
private final IntProvider
The field for theradius
record component.Fields inherited from interface net.minecraft.world.gen.feature.FeatureConfig
DEFAULT
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondepth()
Returns the value of thedepth
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.radius()
Returns the value of theradius
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.world.gen.feature.FeatureConfig
getDecoratedFeatures
-
Field Details
-
radius
The field for theradius
record component. -
depth
The field for thedepth
record component. -
field_44267
- Mappings:
Namespace Name Mixin selector official a
Ldqx;a:Lcom/mojang/serialization/Codec;
intermediary field_44267
Lnet/minecraft/class_8437;field_44267:Lcom/mojang/serialization/Codec;
named field_44267
Lnet/minecraft/class_8437;field_44267:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
class_8437
-
-
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)
. -
radius
Returns the value of theradius
record component.- Returns:
- the value of the
radius
record component
-
depth
Returns the value of thedepth
record component.- Returns:
- the value of the
depth
record component
-