Record Class RandomNeighborSpreadFeature

java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.feature.RandomNeighborSpreadFeature
All Implemented Interfaces:
Feature

public record RandomNeighborSpreadFeature(Holder<BlockStateProvider> block, HolderSet<Block> acceptedNeighbors, BlockPredicate canReplace, IntProvider attempts, IntProvider xzOffset, IntProvider yOffset) extends Record implements Feature
  • Field Details

    • block

      private final Holder<BlockStateProvider> block
      The field for the block record component.
    • acceptedNeighbors

      private final HolderSet<Block> acceptedNeighbors
      The field for the acceptedNeighbors record component.
    • canReplace

      private final BlockPredicate canReplace
      The field for the canReplace record component.
    • attempts

      private final IntProvider attempts
      The field for the attempts record component.
    • xzOffset

      private final IntProvider xzOffset
      The field for the xzOffset record component.
    • yOffset

      private final IntProvider yOffset
      The field for the yOffset record component.
    • CODEC

      public static final com.mojang.serialization.MapCodec<RandomNeighborSpreadFeature> CODEC
    • DIRECTIONS

      private static final Direction[] DIRECTIONS
  • Constructor Details

    • RandomNeighborSpreadFeature

      public RandomNeighborSpreadFeature(Holder<BlockStateProvider> block, HolderSet<Block> acceptedNeighbors, BlockPredicate canReplace, IntProvider attempts, IntProvider xzOffset, IntProvider yOffset)
      Creates an instance of a RandomNeighborSpreadFeature record class.
      Parameters:
      block - the value for the block record component
      acceptedNeighbors - the value for the acceptedNeighbors record component
      canReplace - the value for the canReplace record component
      attempts - the value for the attempts record component
      xzOffset - the value for the xzOffset record component
      yOffset - the value for the yOffset record component
  • Method Details

    • codec

      public com.mojang.serialization.MapCodec<RandomNeighborSpreadFeature> codec()
      Specified by:
      codec in interface Feature
    • place

      public boolean place(WorldGenLevel level, ChunkGenerator chunkGenerator, RandomSource random, BlockPos origin)
      Specified by:
      place in interface Feature
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • block

      public Holder<BlockStateProvider> block()
      Returns the value of the block record component.
      Returns:
      the value of the block record component
    • acceptedNeighbors

      public HolderSet<Block> acceptedNeighbors()
      Returns the value of the acceptedNeighbors record component.
      Returns:
      the value of the acceptedNeighbors record component
    • canReplace

      public BlockPredicate canReplace()
      Returns the value of the canReplace record component.
      Returns:
      the value of the canReplace record component
    • attempts

      public IntProvider attempts()
      Returns the value of the attempts record component.
      Returns:
      the value of the attempts record component
    • xzOffset

      public IntProvider xzOffset()
      Returns the value of the xzOffset record component.
      Returns:
      the value of the xzOffset record component
    • yOffset

      public IntProvider yOffset()
      Returns the value of the yOffset record component.
      Returns:
      the value of the yOffset record component