Package net.minecraft.structure
Record Class StructureTemplate.StructureBlockInfo
java.lang.Object
java.lang.Record
net.minecraft.structure.StructureTemplate.StructureBlockInfo
- Record Components:
pos
-state
-nbt
-
- Enclosing class:
StructureTemplate
public static record StructureTemplate.StructureBlockInfo(BlockPos pos, BlockState state, @Nullable NbtCompound nbt)
extends Record
- Mappings:
Namespace Name official dzb$c
intermediary net/minecraft/class_3499$class_3501
named net/minecraft/structure/StructureTemplate$StructureBlockInfo
official a
intermediary comp_1341
named pos
official b
intermediary comp_1342
named state
official c
intermediary comp_1343
named nbt
-
Field Summary
Modifier and TypeFieldDescriptionprivate final @Nullable NbtCompound
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, @Nullable NbtCompound 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
-
Constructor Details
-
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
-