Record Class StructurePlacement.ExclusionZone
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.structure.placement.StructurePlacement.ExclusionZone
- Enclosing class:
- StructurePlacement
@Deprecated
public static record StructurePlacement.ExclusionZone(Holder<StructureSet> otherSet, int chunkCount)
extends Record
Deprecated.
-
Field Summary
Modifier and TypeFieldDescriptionprivate final int
Deprecated.The field for thechunkCount
record component.static final com.mojang.serialization.Codec<StructurePlacement.ExclusionZone>
Deprecated.private final Holder<StructureSet>
Deprecated.The field for theotherSet
record component. -
Constructor Summary
ConstructorDescriptionExclusionZone
(Holder<StructureSet> otherSet, int chunkCount) Deprecated.Creates an instance of aExclusionZone
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
Deprecated.Returns the value of thechunkCount
record component.final boolean
Deprecated.Indicates whether some other object is "equal to" this one.final int
hashCode()
Deprecated.Returns a hash code value for this object.(package private) boolean
isPlacementForbidden
(ChunkGeneratorStructureState p_255745_, int p_255634_, int p_255892_) Deprecated.otherSet()
Deprecated.Returns the value of theotherSet
record component.final String
toString()
Deprecated.Returns a string representation of this record class.
-
Field Details
-
otherSet
Deprecated.The field for theotherSet
record component. -
chunkCount
private final int chunkCountDeprecated.The field for thechunkCount
record component. -
CODEC
Deprecated.
-
-
Constructor Details
-
ExclusionZone
Deprecated.Creates an instance of aExclusionZone
record class.- Parameters:
otherSet
- the value for theotherSet
record componentchunkCount
- the value for thechunkCount
record component
-
-
Method Details
-
isPlacementForbidden
Deprecated. -
toString
Deprecated.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()Deprecated.Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Deprecated.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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
otherSet
Deprecated.Returns the value of theotherSet
record component.- Returns:
- the value of the
otherSet
record component
-
chunkCount
public int chunkCount()Deprecated.Returns the value of thechunkCount
record component.- Returns:
- the value of the
chunkCount
record component
-