Record Class StructureTemplate.StructureBlockInfo
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.structure.templatesystem.StructureTemplate.StructureBlockInfo
- Enclosing class:
StructureTemplate
public static record StructureTemplate.StructureBlockInfo(BlockPos pos, BlockState state, @Nullable CompoundTag nbt)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final CompoundTag
The field for thenbt
record component.private final BlockPos
The field for thepos
record component.private final BlockState
The field for thestate
record component. -
Constructor Summary
ConstructorDescriptionStructureBlockInfo
(BlockPos pos, BlockState state, CompoundTag nbt) Creates an instance of aStructureBlockInfo
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.nbt()
Returns the value of thenbt
record component.pos()
Returns the value of thepos
record component.state()
Returns the value of thestate
record component.toString()
Returns a string representation of this record class.
-
Field Details
-
pos
The field for thepos
record component. -
state
The field for thestate
record component. -
nbt
The field for thenbt
record component.
-
-
Constructor Details
-
StructureBlockInfo
Creates an instance of aStructureBlockInfo
record class.- Parameters:
pos
- the value for thepos
record componentstate
- the value for thestate
record componentnbt
- the value for thenbt
record component
-
-
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)
. -
pos
Returns the value of thepos
record component.- Returns:
- the value of the
pos
record component
-
state
Returns the value of thestate
record component.- Returns:
- the value of the
state
record component
-
nbt
Returns the value of thenbt
record component.- Returns:
- the value of the
nbt
record component
-