Record Class Structure.StructurePosition
java.lang.Object
java.lang.Record
net.minecraft.world.gen.structure.Structure.StructurePosition
- Record Components:
position
-generator
-
- Enclosing class:
Structure
public static record Structure.StructurePosition(BlockPos position, com.mojang.datafixers.util.Either<Consumer<StructurePiecesCollector>,StructurePiecesCollector> generator)
extends Record
- Mappings:
Namespace Name official dvi$b
intermediary net/minecraft/class_3195$class_7150
named net/minecraft/world/gen/structure/Structure$StructurePosition
official a
intermediary comp_571
named position
official b
intermediary comp_572
named generator
-
Field Summary
Modifier and TypeFieldDescriptionprivate final com.mojang.datafixers.util.Either<Consumer<StructurePiecesCollector>,
StructurePiecesCollector> The field for thegenerator
record component.private final BlockPos
The field for theposition
record component. -
Constructor Summary
ConstructorDescriptionStructurePosition
(BlockPos blockPos, com.mojang.datafixers.util.Either<Consumer<StructurePiecesCollector>, StructurePiecesCollector> either) StructurePosition
(BlockPos pos, Consumer<StructurePiecesCollector> generator) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.generate()
com.mojang.datafixers.util.Either<Consumer<StructurePiecesCollector>,
StructurePiecesCollector> Returns the value of thegenerator
record component.final int
hashCode()
Returns a hash code value for this object.position()
Returns the value of theposition
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
position
The field for theposition
record component. -
generator
private final com.mojang.datafixers.util.Either<Consumer<StructurePiecesCollector>,StructurePiecesCollector> generatorThe field for thegenerator
record component.
-
-
Constructor Details
-
StructurePosition
- Mappings:
Namespace Name Mixin selector official <init>
Ldvi$b;<init>(Lgw;Ljava/util/function/Consumer;)V
intermediary <init>
Lnet/minecraft/class_3195$class_7150;<init>(Lnet/minecraft/class_2338;Ljava/util/function/Consumer;)V
named <init>
Lnet/minecraft/world/gen/structure/Structure$StructurePosition;<init>(Lnet/minecraft/util/math/BlockPos;Ljava/util/function/Consumer;)V
-
StructurePosition
public StructurePosition(BlockPos blockPos, com.mojang.datafixers.util.Either<Consumer<StructurePiecesCollector>, StructurePiecesCollector> either)
-
-
Method Details
-
generate
- Mappings:
Namespace Name Mixin selector official a
Ldvi$b;a()Ldwa;
intermediary method_44019
Lnet/minecraft/class_3195$class_7150;method_44019()Lnet/minecraft/class_6626;
named generate
Lnet/minecraft/world/gen/structure/Structure$StructurePosition;generate()Lnet/minecraft/structure/StructurePiecesCollector;
-
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)
. -
position
Returns the value of theposition
record component.- Returns:
- the value of the
position
record component
-
generator
public com.mojang.datafixers.util.Either<Consumer<StructurePiecesCollector>,StructurePiecesCollector> generator()Returns the value of thegenerator
record component.- Returns:
- the value of the
generator
record component
-