Record Class BlockSnapshot

java.lang.Object
java.lang.Record
dev.despical.tntrun.blocks.BlockSnapshot

public record BlockSnapshot(String key, String world, int x, int y, int z, String blockData) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    BlockSnapshot(String key, String world, int x, int y, int z, String blockData)
    Creates an instance of a BlockSnapshot record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the blockData record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    from(org.bukkit.block.Block block)
     
    from(org.bukkit.configuration.ConfigurationSection section)
     
    org.bukkit.block.Block
     
    final int
    Returns a hash code value for this object.
    key()
    Returns the value of the key record component.
    static String
    key(org.bukkit.block.Block block)
     
    boolean
    matches(org.bukkit.block.Block block)
     
    boolean
    restore(boolean onlyIfAir)
     
    final String
    Returns a string representation of this record class.
    Returns the value of the world record component.
    void
    write(org.bukkit.configuration.ConfigurationSection section)
     
    int
    x()
    Returns the value of the x record component.
    int
    y()
    Returns the value of the y record component.
    int
    z()
    Returns the value of the z record component.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • BlockSnapshot

      public BlockSnapshot(String key, String world, int x, int y, int z, String blockData)
      Creates an instance of a BlockSnapshot record class.
      Parameters:
      key - the value for the key record component
      world - the value for the world record component
      x - the value for the x record component
      y - the value for the y record component
      z - the value for the z record component
      blockData - the value for the blockData record component
  • Method Details

    • from

      public static BlockSnapshot from(org.bukkit.block.Block block)
    • from

      public static BlockSnapshot from(org.bukkit.configuration.ConfigurationSection section)
    • key

      public static String key(org.bukkit.block.Block block)
    • getBlock

      public org.bukkit.block.Block getBlock()
    • matches

      public boolean matches(org.bukkit.block.Block block)
    • restore

      public boolean restore(boolean onlyIfAir)
    • write

      public void write(org.bukkit.configuration.ConfigurationSection section)
    • 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 the compare method from their corresponding wrapper classes.
      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.
    • key

      public String key()
      Returns the value of the key record component.
      Returns:
      the value of the key record component
    • world

      public String world()
      Returns the value of the world record component.
      Returns:
      the value of the world record component
    • x

      public int x()
      Returns the value of the x record component.
      Returns:
      the value of the x record component
    • y

      public int y()
      Returns the value of the y record component.
      Returns:
      the value of the y record component
    • z

      public int z()
      Returns the value of the z record component.
      Returns:
      the value of the z record component
    • blockData

      public String blockData()
      Returns the value of the blockData record component.
      Returns:
      the value of the blockData record component