Package net.minecraft.world.level.biome
Record Class FeatureSorter.StepFeatureData
java.lang.Object
java.lang.Record
net.minecraft.world.level.biome.FeatureSorter.StepFeatureData
- Enclosing class:
FeatureSorter
public static record FeatureSorter.StepFeatureData(List<PlacedFeature> features, ToIntFunction<PlacedFeature> indexMapping)
extends Record
-
Field Summary
Modifier and TypeFieldDescriptionprivate final List<PlacedFeature>
The field for thefeatures
record component.private final ToIntFunction<PlacedFeature>
The field for theindexMapping
record component. -
Constructor Summary
ConstructorDescriptionStepFeatureData
(List<PlacedFeature> p_220627_) StepFeatureData
(List<PlacedFeature> features, ToIntFunction<PlacedFeature> indexMapping) Creates an instance of aStepFeatureData
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.features()
Returns the value of thefeatures
record component.final int
hashCode()
Returns a hash code value for this object.Returns the value of theindexMapping
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
features
The field for thefeatures
record component. -
indexMapping
The field for theindexMapping
record component.
-
-
Constructor Details
-
StepFeatureData
StepFeatureData(List<PlacedFeature> p_220627_) -
StepFeatureData
Creates an instance of aStepFeatureData
record class.- Parameters:
features
- the value for thefeatures
record componentindexMapping
- the value for theindexMapping
record 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)
. -
features
Returns the value of thefeatures
record component.- Returns:
- the value of the
features
record component
-
indexMapping
Returns the value of theindexMapping
record component.- Returns:
- the value of the
indexMapping
record component
-