Record Class Structure.StructureSettings
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.structure.Structure.StructureSettings
- Enclosing class:
Structure
public static record Structure.StructureSettings(HolderSet<Biome> biomes, Map<MobCategory,StructureSpawnOverride> spawnOverrides, GenerationStep.Decoration step, TerrainAdjustment terrainAdaptation)
extends Record
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionThe field for thebiomesrecord component.static final com.mojang.serialization.MapCodec<Structure.StructureSettings> (package private) static final Structure.StructureSettingsprivate final Map<MobCategory, StructureSpawnOverride> The field for thespawnOverridesrecord component.private final GenerationStep.DecorationThe field for thesteprecord component.private final TerrainAdjustmentThe field for theterrainAdaptationrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionStructureSettings(HolderSet<Biome> p_352235_) StructureSettings(HolderSet<Biome> biomes, Map<MobCategory, StructureSpawnOverride> spawnOverrides, GenerationStep.Decoration step, TerrainAdjustment terrainAdaptation) Creates an instance of aStructureSettingsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbiomes()Returns the value of thebiomesrecord 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 thespawnOverridesrecord component.step()Returns the value of thesteprecord component.Returns the value of theterrainAdaptationrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
biomes
The field for thebiomesrecord component. -
spawnOverrides
The field for thespawnOverridesrecord component. -
step
The field for thesteprecord component. -
terrainAdaptation
The field for theterrainAdaptationrecord component. -
DEFAULT
-
CODEC
-
-
Constructor Details
-
StructureSettings
-
StructureSettings
public StructureSettings(HolderSet<Biome> biomes, Map<MobCategory, StructureSpawnOverride> spawnOverrides, GenerationStep.Decoration step, TerrainAdjustment terrainAdaptation) Creates an instance of aStructureSettingsrecord class.- Parameters:
biomes- the value for thebiomesrecord componentspawnOverrides- the value for thespawnOverridesrecord componentstep- the value for thesteprecord componentterrainAdaptation- the value for theterrainAdaptationrecord 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. 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
-
spawnOverrides
Returns the value of thespawnOverridesrecord component.- Returns:
- the value of the
spawnOverridesrecord component
-
step
Returns the value of thesteprecord component.- Returns:
- the value of the
steprecord component
-
terrainAdaptation
Returns the value of theterrainAdaptationrecord component.- Returns:
- the value of the
terrainAdaptationrecord component
-