Record Class StructurePieceSerializationContext
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.structure.pieces.StructurePieceSerializationContext
public record StructurePieceSerializationContext(ResourceManager resourceManager, RegistryAccess registryAccess, StructureManager structureManager)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final RegistryAccess
The field for theregistryAccess
record component.private final ResourceManager
The field for theresourceManager
record component.private final StructureManager
The field for thestructureManager
record component. -
Constructor Summary
ConstructorDescriptionStructurePieceSerializationContext
(ResourceManager resourceManager, RegistryAccess registryAccess, StructureManager structureManager) Creates an instance of aStructurePieceSerializationContext
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.fromLevel
(ServerLevel p_192771_) final int
hashCode()
Returns a hash code value for this object.Returns the value of theregistryAccess
record component.Returns the value of theresourceManager
record component.Returns the value of thestructureManager
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
resourceManager
The field for theresourceManager
record component. -
registryAccess
The field for theregistryAccess
record component. -
structureManager
The field for thestructureManager
record component.
-
-
Constructor Details
-
StructurePieceSerializationContext
public StructurePieceSerializationContext(ResourceManager resourceManager, RegistryAccess registryAccess, StructureManager structureManager) Creates an instance of aStructurePieceSerializationContext
record class.- Parameters:
resourceManager
- the value for theresourceManager
record componentregistryAccess
- the value for theregistryAccess
record componentstructureManager
- the value for thestructureManager
record component
-
-
Method Details
-
fromLevel
-
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)
. -
resourceManager
Returns the value of theresourceManager
record component.- Returns:
- the value of the
resourceManager
record component
-
registryAccess
Returns the value of theregistryAccess
record component.- Returns:
- the value of the
registryAccess
record component
-
structureManager
Returns the value of thestructureManager
record component.- Returns:
- the value of the
structureManager
record component
-