Record Class PieceGeneratorSupplier.Context<C extends FeatureConfiguration>
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.structure.pieces.PieceGeneratorSupplier.Context<C>
- Enclosing interface:
- PieceGeneratorSupplier<C extends FeatureConfiguration>
public static record PieceGeneratorSupplier.Context<C extends FeatureConfiguration>(ChunkGenerator chunkGenerator, BiomeSource biomeSource, RandomState randomState, long seed, ChunkPos chunkPos, C extends FeatureConfiguration config, LevelHeightAccessor heightAccessor, Predicate<Holder<Biome>> validBiome, StructureTemplateManager structureTemplateManager, RegistryAccess registryAccess)
extends Record
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final BiomeSourceThe field for thebiomeSourcerecord component.private final ChunkGeneratorThe field for thechunkGeneratorrecord component.private final ChunkPosThe field for thechunkPosrecord component.private final CThe field for theconfigrecord component.private final LevelHeightAccessorThe field for theheightAccessorrecord component.private final RandomStateThe field for therandomStaterecord component.private final RegistryAccessThe field for theregistryAccessrecord component.private final longThe field for theseedrecord component.private final StructureTemplateManagerThe field for thestructureTemplateManagerrecord component.The field for thevalidBiomerecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionContext(ChunkGenerator chunkGenerator, BiomeSource biomeSource, RandomState randomState, long seed, ChunkPos chunkPos, C config, LevelHeightAccessor heightAccessor, Predicate<Holder<Biome>> validBiome, StructureTemplateManager structureTemplateManager, RegistryAccess registryAccess) Creates an instance of aContextrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thebiomeSourcerecord component.Returns the value of thechunkGeneratorrecord component.chunkPos()Returns the value of thechunkPosrecord component.config()Returns the value of theconfigrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theheightAccessorrecord component.Returns the value of therandomStaterecord component.Returns the value of theregistryAccessrecord component.longseed()Returns the value of theseedrecord component.Returns the value of thestructureTemplateManagerrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thevalidBiomerecord component.booleanvalidBiomeOnTop(Heightmap.Types p_197381_) 
- 
Field Details- 
chunkGeneratorThe field for thechunkGeneratorrecord component.
- 
biomeSourceThe field for thebiomeSourcerecord component.
- 
randomStateThe field for therandomStaterecord component.
- 
seedprivate final long seedThe field for theseedrecord component.
- 
chunkPosThe field for thechunkPosrecord component.
- 
configThe field for theconfigrecord component.
- 
heightAccessorThe field for theheightAccessorrecord component.
- 
validBiomeThe field for thevalidBiomerecord component.
- 
structureTemplateManagerThe field for thestructureTemplateManagerrecord component.
- 
registryAccessThe field for theregistryAccessrecord component.
 
- 
- 
Constructor Details- 
Contextpublic Context(ChunkGenerator chunkGenerator, BiomeSource biomeSource, RandomState randomState, long seed, ChunkPos chunkPos, C config, LevelHeightAccessor heightAccessor, Predicate<Holder<Biome>> validBiome, StructureTemplateManager structureTemplateManager, RegistryAccess registryAccess) Creates an instance of aContextrecord class.- Parameters:
- chunkGenerator- the value for the- chunkGeneratorrecord component
- biomeSource- the value for the- biomeSourcerecord component
- randomState- the value for the- randomStaterecord component
- seed- the value for the- seedrecord component
- chunkPos- the value for the- chunkPosrecord component
- config- the value for the- configrecord component
- heightAccessor- the value for the- heightAccessorrecord component
- validBiome- the value for the- validBiomerecord component
- structureTemplateManager- the value for the- structureTemplateManagerrecord component
- registryAccess- the value for the- registryAccessrecord component
 
 
- 
- 
Method Details- 
validBiomeOnTop
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='.
- 
chunkGeneratorReturns the value of thechunkGeneratorrecord component.- Returns:
- the value of the chunkGeneratorrecord component
 
- 
biomeSourceReturns the value of thebiomeSourcerecord component.- Returns:
- the value of the biomeSourcerecord component
 
- 
randomStateReturns the value of therandomStaterecord component.- Returns:
- the value of the randomStaterecord component
 
- 
seedpublic long seed()Returns the value of theseedrecord component.- Returns:
- the value of the seedrecord component
 
- 
chunkPosReturns the value of thechunkPosrecord component.- Returns:
- the value of the chunkPosrecord component
 
- 
configReturns the value of theconfigrecord component.- Returns:
- the value of the configrecord component
 
- 
heightAccessorReturns the value of theheightAccessorrecord component.- Returns:
- the value of the heightAccessorrecord component
 
- 
validBiomeReturns the value of thevalidBiomerecord component.- Returns:
- the value of the validBiomerecord component
 
- 
structureTemplateManagerReturns the value of thestructureTemplateManagerrecord component.- Returns:
- the value of the structureTemplateManagerrecord component
 
- 
registryAccessReturns the value of theregistryAccessrecord component.- Returns:
- the value of the registryAccessrecord component
 
 
-