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 dop$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 Details

  • Constructor Details

    • StructurePosition

      public StructurePosition(BlockPos pos, Consumer<StructurePiecesCollector> generator)
      Mappings:
      Namespace Name Mixin selector
      official <init> Ldop$b;<init>(Lgp;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

      public StructurePiecesCollector generate()
      Mappings:
      Namespace Name Mixin selector
      official a Ldop$b;a()Ldph;
      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

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • position

      public BlockPos position()
      Returns the value of the position 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 the generator record component.
      Returns:
      the value of the generator record component