Package net.minecraft.structure
Record Class StructureSet
java.lang.Object
java.lang.Record
net.minecraft.structure.StructureSet
- Record Components:
structures
-placement
-
public record StructureSet(List<StructureSet.WeightedEntry> structures, StructurePlacement placement)
extends Record
- Mappings:
Namespace Name official dvo
intermediary net/minecraft/class_7059
named net/minecraft/structure/StructureSet
official c
intermediary comp_510
named structures
official d
intermediary comp_511
named placement
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<StructureSet>
private final StructurePlacement
The field for theplacement
record component.static final com.mojang.serialization.Codec<RegistryEntry<StructureSet>>
private final List<StructureSet.WeightedEntry>
The field for thestructures
record component. -
Constructor Summary
ConstructorDescriptionStructureSet
(List<StructureSet.WeightedEntry> list, StructurePlacement structurePlacement) StructureSet
(RegistryEntry<Structure> structure, StructurePlacement placement) -
Method Summary
Modifier and TypeMethodDescriptionstatic StructureSet.WeightedEntry
createEntry
(RegistryEntry<Structure> structure) static StructureSet.WeightedEntry
createEntry
(RegistryEntry<Structure> structure, int weight) 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 theplacement
record component.Returns the value of thestructures
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
structures
The field for thestructures
record component. -
placement
The field for theplacement
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Ldvo;a:Lcom/mojang/serialization/Codec;
intermediary field_37195
Lnet/minecraft/class_7059;field_37195:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/structure/StructureSet;CODEC:Lcom/mojang/serialization/Codec;
-
REGISTRY_CODEC
- Mappings:
Namespace Name Mixin selector official b
Ldvo;b:Lcom/mojang/serialization/Codec;
intermediary field_37196
Lnet/minecraft/class_7059;field_37196:Lcom/mojang/serialization/Codec;
named REGISTRY_CODEC
Lnet/minecraft/structure/StructureSet;REGISTRY_CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
StructureSet
- Mappings:
Namespace Name Mixin selector official <init>
Ldvo;<init>(Lhe;Ldwf;)V
intermediary <init>
Lnet/minecraft/class_7059;<init>(Lnet/minecraft/class_6880;Lnet/minecraft/class_6874;)V
named <init>
Lnet/minecraft/structure/StructureSet;<init>(Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/world/gen/chunk/placement/StructurePlacement;)V
-
StructureSet
-
-
Method Details
-
createEntry
public static StructureSet.WeightedEntry createEntry(RegistryEntry<Structure> structure, int weight) - Mappings:
Namespace Name Mixin selector official a
Ldvo;a(Lhe;I)Ldvo$a;
intermediary method_41146
Lnet/minecraft/class_7059;method_41146(Lnet/minecraft/class_6880;I)Lnet/minecraft/class_7059$class_7060;
named createEntry
Lnet/minecraft/structure/StructureSet;createEntry(Lnet/minecraft/registry/entry/RegistryEntry;I)Lnet/minecraft/structure/StructureSet$WeightedEntry;
-
createEntry
- Mappings:
Namespace Name Mixin selector official a
Ldvo;a(Lhe;)Ldvo$a;
intermediary method_41145
Lnet/minecraft/class_7059;method_41145(Lnet/minecraft/class_6880;)Lnet/minecraft/class_7059$class_7060;
named createEntry
Lnet/minecraft/structure/StructureSet;createEntry(Lnet/minecraft/registry/entry/RegistryEntry;)Lnet/minecraft/structure/StructureSet$WeightedEntry;
-
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)
. -
structures
Returns the value of thestructures
record component.- Returns:
- the value of the
structures
record component
-
placement
Returns the value of theplacement
record component.- Returns:
- the value of the
placement
record component
-