Record Class PieceGenerator.Context<C extends FeatureConfiguration>
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.structure.pieces.PieceGenerator.Context<C>
- Enclosing interface:
- PieceGenerator<C extends FeatureConfiguration>
public static record PieceGenerator.Context<C extends FeatureConfiguration>(C extends FeatureConfiguration config, ChunkGenerator chunkGenerator, StructureTemplateManager structureTemplateManager, ChunkPos chunkPos, LevelHeightAccessor heightAccessor, WorldgenRandom random, long seed)
extends Record
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate 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 WorldgenRandomThe field for therandomrecord component.private final longThe field for theseedrecord component.private final StructureTemplateManagerThe field for thestructureTemplateManagerrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionContext(C config, ChunkGenerator chunkGenerator, StructureTemplateManager structureTemplateManager, ChunkPos chunkPos, LevelHeightAccessor heightAccessor, WorldgenRandom random, long seed) Creates an instance of aContextrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionReturns 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.random()Returns the value of therandomrecord component.longseed()Returns the value of theseedrecord component.Returns the value of thestructureTemplateManagerrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
configThe field for theconfigrecord component.
- 
chunkGeneratorThe field for thechunkGeneratorrecord component.
- 
structureTemplateManagerThe field for thestructureTemplateManagerrecord component.
- 
chunkPosThe field for thechunkPosrecord component.
- 
heightAccessorThe field for theheightAccessorrecord component.
- 
randomThe field for therandomrecord component.
- 
seedprivate final long seedThe field for theseedrecord component.
 
- 
- 
Constructor Details- 
Contextpublic Context(C config, ChunkGenerator chunkGenerator, StructureTemplateManager structureTemplateManager, ChunkPos chunkPos, LevelHeightAccessor heightAccessor, WorldgenRandom random, long seed) Creates an instance of aContextrecord class.- Parameters:
- config- the value for the- configrecord component
- chunkGenerator- the value for the- chunkGeneratorrecord component
- structureTemplateManager- the value for the- structureTemplateManagerrecord component
- chunkPos- the value for the- chunkPosrecord component
- heightAccessor- the value for the- heightAccessorrecord component
- random- the value for the- randomrecord component
- seed- the value for the- seedrecord component
 
 
- 
- 
Method Details- 
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 '=='.
- 
configReturns the value of theconfigrecord component.- Returns:
- the value of the configrecord component
 
- 
chunkGeneratorReturns the value of thechunkGeneratorrecord component.- Returns:
- the value of the chunkGeneratorrecord component
 
- 
structureTemplateManagerReturns the value of thestructureTemplateManagerrecord component.- Returns:
- the value of the structureTemplateManagerrecord component
 
- 
chunkPosReturns the value of thechunkPosrecord component.- Returns:
- the value of the chunkPosrecord component
 
- 
heightAccessorReturns the value of theheightAccessorrecord component.- Returns:
- the value of the heightAccessorrecord component
 
- 
randomReturns the value of therandomrecord component.- Returns:
- the value of the randomrecord component
 
- 
seedpublic long seed()Returns the value of theseedrecord component.- Returns:
- the value of the seedrecord component
 
 
-