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$cintermediary net/minecraft/class_6686$class_6689named net/minecraft/world/gen/surfacebuilder/MaterialRules$BiomeMaterialConditionofficial aintermediary comp_190named biomes
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) class -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List<RegistryKey<Biome>>The field for thebiomesrecord 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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionapply(MaterialRules.MaterialRuleContext materialRuleContext) biomes()Returns the value of thebiomesrecord component.com.mojang.serialization.Codec<? extends MaterialRules.MaterialCondition>codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
biomes
The field for thebiomesrecord component. -
CONDITION_CODEC
- Mappings:
Namespace Name Mixin selector official cLctu$c;c:Lcom/mojang/serialization/Codec;intermediary field_35228Lnet/minecraft/class_6686$class_6689;field_35228:Lcom/mojang/serialization/Codec;named CONDITION_CODECLnet/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:
codecin interfaceMaterialRules.MaterialCondition- Mappings:
Namespace Name Mixin selector official aLctu$f;a()Lcom/mojang/serialization/Codec;intermediary method_39064Lnet/minecraft/class_6686$class_6693;method_39064()Lcom/mojang/serialization/Codec;named codecLnet/minecraft/world/gen/surfacebuilder/MaterialRules$MaterialCondition;codec()Lcom/mojang/serialization/Codec;
-
apply
- Specified by:
applyin interfaceFunction<MaterialRules.MaterialRuleContext,MaterialRules.BooleanSupplier> - Mappings:
Namespace Name Mixin selector official aLctu$c;a(Lctu$g;)Lctu$e;intermediary method_39065Lnet/minecraft/class_6686$class_6689;method_39065(Lnet/minecraft/class_6686$class_6694;)Lnet/minecraft/class_6686$class_6692;named applyLnet/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 thebiomesrecord component.- Returns:
- the value of the
biomesrecord component
-