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 SpawnPrioritySelectors
private final List
<PriorityProvider.Selector<SpawnContext, SpawnCondition>> The field for theselectors
record component. -
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aSpawnPrioritySelectors
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.static SpawnPrioritySelectors
fallback
(int p_400301_) final int
hashCode()
Returns a hash code value for this object.Returns the value of theselectors
record component.static SpawnPrioritySelectors
single
(SpawnCondition p_400226_, int p_400154_) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
selectors
The field for theselectors
record component. -
EMPTY
-
CODEC
-
-
Constructor Details
-
SpawnPrioritySelectors
public SpawnPrioritySelectors(List<PriorityProvider.Selector<SpawnContext, SpawnCondition>> selectors) Creates an instance of aSpawnPrioritySelectors
record class.- Parameters:
selectors
- the value for theselectors
record 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 theselectors
record component.- Returns:
- the value of the
selectors
record component
-