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 Summary
Modifier and TypeFieldDescriptionprivate final ChunkGenerator
The field for thechunkGenerator
record component.private final ChunkPos
The field for thechunkPos
record component.private final C
The field for theconfig
record component.private final LevelHeightAccessor
The field for theheightAccessor
record component.private final WorldgenRandom
The field for therandom
record component.private final long
The field for theseed
record component.private final StructureTemplateManager
The field for thestructureTemplateManager
record component. -
Constructor Summary
ConstructorDescriptionContext
(C config, ChunkGenerator chunkGenerator, StructureTemplateManager structureTemplateManager, ChunkPos chunkPos, LevelHeightAccessor heightAccessor, WorldgenRandom random, long seed) Creates an instance of aContext
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thechunkGenerator
record component.chunkPos()
Returns the value of thechunkPos
record component.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.Returns the value of theheightAccessor
record component.random()
Returns the value of therandom
record component.long
seed()
Returns the value of theseed
record component.Returns the value of thestructureTemplateManager
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
config
The field for theconfig
record component. -
chunkGenerator
The field for thechunkGenerator
record component. -
structureTemplateManager
The field for thestructureTemplateManager
record component. -
chunkPos
The field for thechunkPos
record component. -
heightAccessor
The field for theheightAccessor
record component. -
random
The field for therandom
record component. -
seed
private final long seedThe field for theseed
record component.
-
-
Constructor Details
-
Context
public Context(C config, ChunkGenerator chunkGenerator, StructureTemplateManager structureTemplateManager, ChunkPos chunkPos, LevelHeightAccessor heightAccessor, WorldgenRandom random, long seed) Creates an instance of aContext
record class.- Parameters:
config
- the value for theconfig
record componentchunkGenerator
- the value for thechunkGenerator
record componentstructureTemplateManager
- the value for thestructureTemplateManager
record componentchunkPos
- the value for thechunkPos
record componentheightAccessor
- the value for theheightAccessor
record componentrandom
- the value for therandom
record componentseed
- the value for theseed
record component
-
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
config
Returns the value of theconfig
record component.- Returns:
- the value of the
config
record component
-
chunkGenerator
Returns the value of thechunkGenerator
record component.- Returns:
- the value of the
chunkGenerator
record component
-
structureTemplateManager
Returns the value of thestructureTemplateManager
record component.- Returns:
- the value of the
structureTemplateManager
record component
-
chunkPos
Returns the value of thechunkPos
record component.- Returns:
- the value of the
chunkPos
record component
-
heightAccessor
Returns the value of theheightAccessor
record component.- Returns:
- the value of the
heightAccessor
record component
-
random
Returns the value of therandom
record component.- Returns:
- the value of the
random
record component
-
seed
public long seed()Returns the value of theseed
record component.- Returns:
- the value of the
seed
record component
-