Record Class CommonSpawnPlacementRegister.Holder<T extends net.minecraft.world.entity.Mob>
java.lang.Object
java.lang.Record
info.u_team.u_team_core.impl.common.CommonSpawnPlacementRegister.Holder<T>
- Enclosing class:
- CommonSpawnPlacementRegister
protected static record CommonSpawnPlacementRegister.Holder<T extends net.minecraft.world.entity.Mob>(net.minecraft.world.entity.SpawnPlacements.Type placementType, 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
Constructors -
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.SpawnPlacements.TypeReturns the value of theplacementTyperecord 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
-
Holder
protected Holder(net.minecraft.world.entity.SpawnPlacements.Type placementType, net.minecraft.world.level.levelgen.Heightmap.Types heightmap, net.minecraft.world.entity.SpawnPlacements.SpawnPredicate<T> predicate) Creates an instance of aHolderrecord class.- Parameters:
placementType- the value for theplacementTyperecord 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). -
placementType
public net.minecraft.world.entity.SpawnPlacements.Type placementType()Returns the value of theplacementTyperecord component.- Returns:
- the value of the
placementTyperecord 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
-