Record Class MaterialRules.BiomeMaterialCondition
java.lang.Object
java.lang.Record
net.minecraft.world.gen.surfacebuilder.MaterialRules.BiomeMaterialCondition
- Record Components:
biomes
-
- All Implemented Interfaces:
Function<MaterialRules.MaterialRuleContext,
,MaterialRules.BooleanSupplier> MaterialRules.MaterialCondition
- Enclosing class:
- MaterialRules
private static record MaterialRules.BiomeMaterialCondition(List<RegistryKey<Biome>> biomes)
extends Record
implements MaterialRules.MaterialCondition
- Mappings:
Namespace Name official ctu$c
intermediary net/minecraft/class_6686$class_6689
named net/minecraft/world/gen/surfacebuilder/MaterialRules$BiomeMaterialCondition
official a
intermediary comp_190
named biomes
-
Nested Class Summary
Modifier and TypeClassDescription(package private) class
-
Field Summary
Modifier and TypeFieldDescriptionprivate final List<RegistryKey<Biome>>
The field for thebiomes
record component.(package private) static final com.mojang.serialization.Codec<MaterialRules.BiomeMaterialCondition>
Fields inherited from interface net.minecraft.world.gen.surfacebuilder.MaterialRules.MaterialCondition
CODEC
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionapply
(MaterialRules.MaterialRuleContext materialRuleContext) biomes()
Returns the value of thebiomes
record component.com.mojang.serialization.Codec<? extends MaterialRules.MaterialCondition>
codec()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
biomes
The field for thebiomes
record component. -
CONDITION_CODEC
- Mappings:
Namespace Name Mixin selector official c
Lctu$c;c:Lcom/mojang/serialization/Codec;
intermediary field_35228
Lnet/minecraft/class_6686$class_6689;field_35228:Lcom/mojang/serialization/Codec;
named CONDITION_CODEC
Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$BiomeMaterialCondition;CONDITION_CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
BiomeMaterialCondition
BiomeMaterialCondition(List<RegistryKey<Biome>> list)
-
-
Method Details
-
codec
- Specified by:
codec
in interfaceMaterialRules.MaterialCondition
- Mappings:
Namespace Name Mixin selector official a
Lctu$f;a()Lcom/mojang/serialization/Codec;
intermediary method_39064
Lnet/minecraft/class_6686$class_6693;method_39064()Lcom/mojang/serialization/Codec;
named codec
Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$MaterialCondition;codec()Lcom/mojang/serialization/Codec;
-
apply
- Specified by:
apply
in interfaceFunction<MaterialRules.MaterialRuleContext,
MaterialRules.BooleanSupplier> - Mappings:
Namespace Name Mixin selector official a
Lctu$c;a(Lctu$g;)Lctu$e;
intermediary method_39065
Lnet/minecraft/class_6686$class_6689;method_39065(Lnet/minecraft/class_6686$class_6694;)Lnet/minecraft/class_6686$class_6692;
named apply
Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$BiomeMaterialCondition;apply(Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$MaterialRuleContext;)Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$BooleanSupplier;
-
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)
. -
biomes
Returns the value of thebiomes
record component.- Returns:
- the value of the
biomes
record component
-