Package net.minecraft.world.gen
Record Class FlatLevelGeneratorPreset
java.lang.Object
java.lang.Record
net.minecraft.world.gen.FlatLevelGeneratorPreset
- Record Components:
- displayItem-
- settings-
public record FlatLevelGeneratorPreset(RegistryEntry<Item> displayItem, FlatChunkGeneratorConfig settings)
extends Record
- Mappings:
- Namespace - Name - official - dqb- intermediary - net/minecraft/class_7142- named - net/minecraft/world/gen/FlatLevelGeneratorPreset- official - c- intermediary - comp_559- named - displayItem- official - d- intermediary - comp_560- named - settings
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<FlatLevelGeneratorPreset>private final RegistryEntry<Item>The field for thedisplayItemrecord component.static final com.mojang.serialization.Codec<RegistryEntry<FlatLevelGeneratorPreset>>private final FlatChunkGeneratorConfigThe field for thesettingsrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionFlatLevelGeneratorPreset(RegistryEntry<Item> registryEntry, FlatChunkGeneratorConfig flatChunkGeneratorConfig) 
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thedisplayItemrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.settings()Returns the value of thesettingsrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
displayItemThe field for thedisplayItemrecord component.
- 
settingsThe field for thesettingsrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - official - a- Ldqb;a:Lcom/mojang/serialization/Codec;- intermediary - field_37711- Lnet/minecraft/class_7142;field_37711:Lcom/mojang/serialization/Codec;- named - CODEC- Lnet/minecraft/world/gen/FlatLevelGeneratorPreset;CODEC:Lcom/mojang/serialization/Codec;
 
- 
ENTRY_CODECpublic static final com.mojang.serialization.Codec<RegistryEntry<FlatLevelGeneratorPreset>> ENTRY_CODEC- Mappings:
- Namespace - Name - Mixin selector - official - b- Ldqb;b:Lcom/mojang/serialization/Codec;- intermediary - field_37712- Lnet/minecraft/class_7142;field_37712:Lcom/mojang/serialization/Codec;- named - ENTRY_CODEC- Lnet/minecraft/world/gen/FlatLevelGeneratorPreset;ENTRY_CODEC:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
FlatLevelGeneratorPresetpublic FlatLevelGeneratorPreset(RegistryEntry<Item> registryEntry, FlatChunkGeneratorConfig flatChunkGeneratorConfig) 
 
- 
- 
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).
- 
displayItemReturns the value of thedisplayItemrecord component.- Returns:
- the value of the displayItemrecord component
 
- 
settingsReturns the value of thesettingsrecord component.- Returns:
- the value of the settingsrecord component
 
 
-