Class CustomFire

java.lang.Object
dev.lone.itemsadder.api.CustomStack
dev.lone.itemsadder.api.CustomFire

public class CustomFire extends CustomStack
  • Constructor Details

    • CustomFire

      public CustomFire()
  • Method Details

    • getInstance

      @Nullable public static @Nullable CustomFire getInstance(String namespacedID)
    • byItemStack

      @Nullable public static @Nullable CustomFire byItemStack(org.bukkit.inventory.ItemStack itemStack)
    • place

      @Nullable public static @Nullable CustomFire place(String namespacedId, org.bukkit.Location location)
      Places a CustomFire at the provided location and return the CustomFire instance for it.
      May return null if the Namespace and ID are invalid.
      Parameters:
      namespacedId - Namespace and ID in the format namespace:id
      location - The location to place the CustomFire at.
      Returns:
      Possibly-null CustomFire instance.
    • byAlreadyPlaced

      @Nullable public static @Nullable CustomFire byAlreadyPlaced(org.bukkit.block.Block block)
      Gets a CustomFire instance through the provided block.
      This may return null if the provided block is not a CustomFire.
      Parameters:
      block - The block to get a CustomFire instance from.
      Returns:
      Possibly-null CustomFire instance.
    • remove

      public static boolean remove(org.bukkit.Location location)
      Returns whether removing the CustomFire at the provided location was successful or not.
      A removal is successful if the Block at the provided location is an actual CustomFire.
      Parameters:
      location - The location to remove the CustomFire from.
      Returns:
      true if the CustomFire could be removed, otherwise false.
    • getAge

      public static int getAge(@NotNull @NotNull org.bukkit.block.Block block)
      Gets the current age of this CustomFire.
      Returns:
      Integer representing the current age of the CustomFire.
    • setAge

      public static void setAge(@NotNull @NotNull org.bukkit.block.Block block, int age)
      Sets the age of this CustomFire to the provided one.
      Parameters:
      age - the age to set for this CustomFire.
    • getLocation

      @Nullable public @Nullable org.bukkit.Location getLocation()
    • isPlaced

      public boolean isPlaced()
    • place

      public CustomFire place(org.bukkit.Location location)
    • remove

      public boolean remove()
    • getAge

      public int getAge()
    • setAge

      public void setAge(int age)