Record Class PiecesContainer
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.structure.pieces.PiecesContainer
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate static final ResourceLocationprivate static final org.slf4j.Loggerprivate final List<StructurePiece>The field for thepiecesrecord component.private static final Map<ResourceLocation,ResourceLocation> 
- 
Constructor SummaryConstructorsConstructorDescriptionPiecesContainer(List<StructurePiece> pieces) Creates an instance of aPiecesContainerrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanisEmpty()booleanisInsidePiece(BlockPos p_192752_) static PiecesContainerload(ListTag p_192754_, StructurePieceSerializationContext p_192755_) pieces()Returns the value of thepiecesrecord component.save(StructurePieceSerializationContext p_192750_) final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
piecesThe field for thepiecesrecord component.
- 
LOGGERprivate static final org.slf4j.Logger LOGGER
- 
JIGSAW_RENAME
- 
RENAMES
 
- 
- 
Constructor Details- 
PiecesContainerCreates an instance of aPiecesContainerrecord class.- Parameters:
- pieces- the value for the- piecesrecord component
 
 
- 
- 
Method Details- 
isEmptypublic boolean isEmpty()
- 
isInsidePiece
- 
save
- 
load
- 
calculateBoundingBox
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
piecesReturns the value of thepiecesrecord component.- Returns:
- the value of the piecesrecord component
 
 
-