Package net.minecraft.world.dimension
Record Class DimensionOptions
java.lang.Object
java.lang.Record
net.minecraft.world.dimension.DimensionOptions
- Record Components:
- dimensionTypeEntry-
- chunkGenerator-
public record DimensionOptions(RegistryEntry<DimensionType> dimensionTypeEntry, ChunkGenerator chunkGenerator)
extends Record
- Mappings:
- Namespace - Name - official - dfl- intermediary - net/minecraft/class_5363- named - net/minecraft/world/dimension/DimensionOptions- official - e- intermediary - comp_1012- named - dimensionTypeEntry- official - f- intermediary - comp_1013- named - chunkGenerator
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final ChunkGeneratorThe field for thechunkGeneratorrecord component.static final com.mojang.serialization.Codec<DimensionOptions>private final RegistryEntry<DimensionType>The field for thedimensionTypeEntryrecord component.static final RegistryKey<DimensionOptions>static final RegistryKey<DimensionOptions>static final RegistryKey<DimensionOptions>
- 
Constructor SummaryConstructorsConstructorDescriptionDimensionOptions(RegistryEntry<DimensionType> dimensionTypeEntry, ChunkGenerator chunkGenerator) Creates an instance of aDimensionOptionsrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thechunkGeneratorrecord component.Returns the value of thedimensionTypeEntryrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
dimensionTypeEntryThe field for thedimensionTypeEntryrecord component.
- 
chunkGeneratorThe field for thechunkGeneratorrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - official - a- Ldfl;a:Lcom/mojang/serialization/Codec;- intermediary - field_25411- Lnet/minecraft/class_5363;field_25411:Lcom/mojang/serialization/Codec;- named - CODEC- Lnet/minecraft/world/dimension/DimensionOptions;CODEC:Lcom/mojang/serialization/Codec;
 
- 
OVERWORLD- Mappings:
- Namespace - Name - Mixin selector - official - b- Ldfl;b:Lacp;- intermediary - field_25412- Lnet/minecraft/class_5363;field_25412:Lnet/minecraft/class_5321;- named - OVERWORLD- Lnet/minecraft/world/dimension/DimensionOptions;OVERWORLD:Lnet/minecraft/registry/RegistryKey;
 
- 
NETHER- Mappings:
- Namespace - Name - Mixin selector - official - c- Ldfl;c:Lacp;- intermediary - field_25413- Lnet/minecraft/class_5363;field_25413:Lnet/minecraft/class_5321;- named - NETHER- Lnet/minecraft/world/dimension/DimensionOptions;NETHER:Lnet/minecraft/registry/RegistryKey;
 
- 
END- Mappings:
- Namespace - Name - Mixin selector - official - d- Ldfl;d:Lacp;- intermediary - field_25414- Lnet/minecraft/class_5363;field_25414:Lnet/minecraft/class_5321;- named - END- Lnet/minecraft/world/dimension/DimensionOptions;END:Lnet/minecraft/registry/RegistryKey;
 
 
- 
- 
Constructor Details- 
DimensionOptionspublic DimensionOptions(RegistryEntry<DimensionType> dimensionTypeEntry, ChunkGenerator chunkGenerator) Creates an instance of aDimensionOptionsrecord class.- Parameters:
- dimensionTypeEntry- the value for the- dimensionTypeEntryrecord component
- chunkGenerator- the value for the- chunkGeneratorrecord 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. All components in this record class are compared withObjects::equals(Object,Object).
- 
dimensionTypeEntryReturns the value of thedimensionTypeEntryrecord component.- Returns:
- the value of the dimensionTypeEntryrecord component
 
- 
chunkGeneratorReturns the value of thechunkGeneratorrecord component.- Returns:
- the value of the chunkGeneratorrecord component
 
 
-