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 priority) final inthashCode()Returns a hash code value for this object.Returns the value of theselectorsrecord component.static SpawnPrioritySelectorssingle(SpawnCondition condition, int priority) 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
-
hashCode
-
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
-