Record Class SpawnRestrictions<T extends net.minecraft.world.entity.Mob>
java.lang.Object
java.lang.Record
net.lcc.sollib.api.common.registry.data.entity.SpawnRestrictions<T>
public record SpawnRestrictions<T extends net.minecraft.world.entity.Mob>(net.minecraft.world.entity.SpawnPlacementType location, net.minecraft.world.level.levelgen.Heightmap.Types heightmap, net.minecraft.world.entity.SpawnPlacements.SpawnPredicate<T extends net.minecraft.world.entity.Mob> predicate)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionSpawnRestrictions(net.minecraft.world.entity.SpawnPlacementType location, net.minecraft.world.level.levelgen.Heightmap.Types heightmap, net.minecraft.world.entity.SpawnPlacements.SpawnPredicate<T> predicate) Creates an instance of aSpawnRestrictionsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.net.minecraft.world.level.levelgen.Heightmap.TypesReturns the value of theheightmaprecord component.net.minecraft.world.entity.SpawnPlacementTypelocation()Returns the value of thelocationrecord component.net.minecraft.world.entity.SpawnPlacements.SpawnPredicate<T> Returns the value of thepredicaterecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SpawnRestrictions
public SpawnRestrictions(net.minecraft.world.entity.SpawnPlacementType location, net.minecraft.world.level.levelgen.Heightmap.Types heightmap, net.minecraft.world.entity.SpawnPlacements.SpawnPredicate<T> predicate) Creates an instance of aSpawnRestrictionsrecord class.- Parameters:
location- the value for thelocationrecord componentheightmap- the value for theheightmaprecord componentpredicate- the value for thepredicaterecord 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). -
location
public net.minecraft.world.entity.SpawnPlacementType location()Returns the value of thelocationrecord component.- Returns:
- the value of the
locationrecord component
-
heightmap
public net.minecraft.world.level.levelgen.Heightmap.Types heightmap()Returns the value of theheightmaprecord component.- Returns:
- the value of the
heightmaprecord component
-
predicate
Returns the value of thepredicaterecord component.- Returns:
- the value of the
predicaterecord component
-