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 named net/minecraft/structure/StructureSet
intermediary net/minecraft/class_7059
official eis
named structures
intermediary comp_510
official c
named placement
intermediary comp_511
official d
-
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 named CODEC
Lnet/minecraft/structure/StructureSet;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_37195
Lnet/minecraft/class_7059;field_37195:Lcom/mojang/serialization/Codec;
official a
Leis;a:Lcom/mojang/serialization/Codec;
-
REGISTRY_CODEC
- Mappings:
Namespace Name Mixin selector named REGISTRY_CODEC
Lnet/minecraft/structure/StructureSet;REGISTRY_CODEC:Lcom/mojang/serialization/Codec;
intermediary field_37196
Lnet/minecraft/class_7059;field_37196:Lcom/mojang/serialization/Codec;
official b
Leis;b:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
StructureSet
- Mappings:
Namespace Name Mixin selector named <init>
Lnet/minecraft/structure/StructureSet;<init>(Lnet/minecraft/registry/entry/RegistryEntry;Lnet/minecraft/world/gen/chunk/placement/StructurePlacement;)V
intermediary <init>
Lnet/minecraft/class_7059;<init>(Lnet/minecraft/class_6880;Lnet/minecraft/class_6874;)V
official <init>
Leis;<init>(Lji;Lejj;)V
-
StructureSet
-
-
Method Details
-
createEntry
public static StructureSet.WeightedEntry createEntry(RegistryEntry<Structure> structure, int weight) - Mappings:
Namespace Name Mixin selector named createEntry
Lnet/minecraft/structure/StructureSet;createEntry(Lnet/minecraft/registry/entry/RegistryEntry;I)Lnet/minecraft/structure/StructureSet$WeightedEntry;
intermediary method_41146
Lnet/minecraft/class_7059;method_41146(Lnet/minecraft/class_6880;I)Lnet/minecraft/class_7059$class_7060;
official a
Leis;a(Lji;I)Leis$a;
-
createEntry
- Mappings:
Namespace Name Mixin selector named createEntry
Lnet/minecraft/structure/StructureSet;createEntry(Lnet/minecraft/registry/entry/RegistryEntry;)Lnet/minecraft/structure/StructureSet$WeightedEntry;
intermediary method_41145
Lnet/minecraft/class_7059;method_41145(Lnet/minecraft/class_6880;)Lnet/minecraft/class_7059$class_7060;
official a
Leis;a(Lji;)Leis$a;
-
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
-