Record Class PopulateSchem

java.lang.Object
java.lang.Record
com.fastasyncworldedit.core.command.tool.brush.PopulateSchem
All Implemented Interfaces:
Brush

public record PopulateSchem(Mask mask, List<ClipboardHolder> clipboards, int rarity, boolean randomRotate) extends Record implements Brush
  • Constructor Details

    • PopulateSchem

      public PopulateSchem(Mask mask, List<ClipboardHolder> clipboards, int rarity, boolean randomRotate)
      Creates an instance of a PopulateSchem record class.
      Parameters:
      mask - the value for the mask record component
      clipboards - the value for the clipboards record component
      rarity - the value for the rarity record component
      randomRotate - the value for the randomRotate record component
  • Method Details

    • build

      public void build(EditSession editSession, BlockVector3 position, Pattern pattern, double size) throws MaxChangedBlocksException
      Description copied from interface: Brush
      Build the object.
      Specified by:
      build in interface Brush
      Parameters:
      editSession - the EditSession
      position - the position
      pattern - the pattern
      size - the size of the brush
      Throws:
      MaxChangedBlocksException - if the maximum block change limit is exceeded
    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • mask

      public Mask mask()
      Returns the value of the mask record component.
      Returns:
      the value of the mask record component
    • clipboards

      public List<ClipboardHolder> clipboards()
      Returns the value of the clipboards record component.
      Returns:
      the value of the clipboards record component
    • rarity

      public int rarity()
      Returns the value of the rarity record component.
      Returns:
      the value of the rarity record component
    • randomRotate

      public boolean randomRotate()
      Returns the value of the randomRotate record component.
      Returns:
      the value of the randomRotate record component