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 dmq
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 Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<FlatLevelGeneratorPreset>
private final RegistryEntry<Item>
The field for thedisplayItem
record component.static final com.mojang.serialization.Codec<RegistryEntry<FlatLevelGeneratorPreset>>
private final FlatChunkGeneratorConfig
The field for thesettings
record component. -
Constructor Summary
ConstructorDescriptionFlatLevelGeneratorPreset
(RegistryEntry<Item> registryEntry, FlatChunkGeneratorConfig flatChunkGeneratorConfig) -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedisplayItem
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.settings()
Returns the value of thesettings
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
displayItem
The field for thedisplayItem
record component. -
settings
The field for thesettings
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Ldmq;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_CODEC
public static final com.mojang.serialization.Codec<RegistryEntry<FlatLevelGeneratorPreset>> ENTRY_CODEC- Mappings:
Namespace Name Mixin selector official b
Ldmq;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
-
FlatLevelGeneratorPreset
public FlatLevelGeneratorPreset(RegistryEntry<Item> registryEntry, FlatChunkGeneratorConfig flatChunkGeneratorConfig)
-
-
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)
. -
displayItem
Returns the value of thedisplayItem
record component.- Returns:
- the value of the
displayItem
record component
-
settings
Returns the value of thesettings
record component.- Returns:
- the value of the
settings
record component
-