Package net.minecraft.world.gen.feature
Record Class StructureFeature.StructurePosition
java.lang.Object
java.lang.Record
net.minecraft.world.gen.feature.StructureFeature.StructurePosition
- Record Components:
position
-generator
-
- Enclosing class:
StructureFeature
public static record StructureFeature.StructurePosition(BlockPos position, Consumer<StructurePiecesCollector> generator)
extends Record
- Mappings:
Namespace Name official dhr$b
intermediary net/minecraft/class_3195$class_7150
named net/minecraft/world/gen/feature/StructureFeature$StructurePosition
official a
intermediary comp_571
named position
official b
intermediary comp_572
named generator
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionStructurePosition
(BlockPos blockPos, Consumer<StructurePiecesCollector> consumer) -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.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
-
Constructor Details
-
StructurePosition
-
-
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)
. -
position
Returns the value of theposition
record component.- Returns:
- the value of the
position
record component
-
generator
Returns the value of thegenerator
record component.- Returns:
- the value of the
generator
record component
-