Record Class SpawnPrioritySelectors
java.lang.Object
java.lang.Record
net.minecraft.world.entity.variant.SpawnPrioritySelectors
public record SpawnPrioritySelectors(List<PriorityProvider.Selector<SpawnContext,SpawnCondition>> selectors)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<SpawnPrioritySelectors> static final SpawnPrioritySelectorsprivate final List<PriorityProvider.Selector<SpawnContext, SpawnCondition>> The field for theselectorsrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aSpawnPrioritySelectorsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.static SpawnPrioritySelectorsfallback(int pPriority) final inthashCode()Returns a hash code value for this object.Returns the value of theselectorsrecord component.static SpawnPrioritySelectorssingle(SpawnCondition pCondition, int pPriority) final StringtoString()Returns a string representation of this record class.
-
Field Details
-
selectors
The field for theselectorsrecord component. -
EMPTY
-
CODEC
-
-
Constructor Details
-
SpawnPrioritySelectors
public SpawnPrioritySelectors(List<PriorityProvider.Selector<SpawnContext, SpawnCondition>> selectors) Creates an instance of aSpawnPrioritySelectorsrecord class.- Parameters:
selectors- the value for theselectorsrecord component
-
-
Method Details
-
single
-
fallback
-
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). -
selectors
Returns the value of theselectorsrecord component.- Returns:
- the value of the
selectorsrecord component
-