Record Class ConfiguredWorldCarver<WC extends CarverConfiguration>
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.carver.ConfiguredWorldCarver<WC>
public record ConfiguredWorldCarver<WC extends CarverConfiguration>(WorldCarver<WC extends CarverConfiguration> worldCarver, WC extends CarverConfiguration config)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<Holder<ConfiguredWorldCarver<?>>>
private final WC
The field for theconfig
record component.static final com.mojang.serialization.Codec<ConfiguredWorldCarver<?>>
static final com.mojang.serialization.Codec<HolderSet<ConfiguredWorldCarver<?>>>
private final WorldCarver<WC>
The field for theworldCarver
record component. -
Constructor Summary
ConstructorDescriptionConfiguredWorldCarver
(WorldCarver<WC> worldCarver, WC config) Creates an instance of aConfiguredWorldCarver
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
carve
(CarvingContext p_190713_, ChunkAccess p_190714_, Function<BlockPos, Holder<Biome>> p_190715_, Random p_190716_, Aquifer p_190717_, ChunkPos p_190718_, CarvingMask p_190719_) config()
Returns the value of theconfig
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.boolean
isStartChunk
(Random p_159274_) final String
toString()
Returns a string representation of this record class.Returns the value of theworldCarver
record component.
-
Field Details
-
worldCarver
The field for theworldCarver
record component. -
config
The field for theconfig
record component. -
DIRECT_CODEC
-
CODEC
-
LIST_CODEC
-
-
Constructor Details
-
ConfiguredWorldCarver
Creates an instance of aConfiguredWorldCarver
record class.- Parameters:
worldCarver
- the value for theworldCarver
record componentconfig
- the value for theconfig
record component
-
-
Method Details
-
isStartChunk
-
carve
public boolean carve(CarvingContext p_190713_, ChunkAccess p_190714_, Function<BlockPos, Holder<Biome>> p_190715_, Random p_190716_, Aquifer p_190717_, ChunkPos p_190718_, CarvingMask p_190719_) -
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)
. -
worldCarver
Returns the value of theworldCarver
record component.- Returns:
- the value of the
worldCarver
record component
-
config
Returns the value of theconfig
record component.- Returns:
- the value of the
config
record component
-