Class StonecuttingRecipe

java.lang.Object
org.bukkit.inventory.StonecuttingRecipe
All Implemented Interfaces:
Keyed, Recipe, Keyed

public class StonecuttingRecipe extends Object implements Recipe, Keyed
Represents a Stonecutting recipe.
Since:
1.14
  • Constructor Details

  • Method Details

    • setInput

      Sets the input of this Stonecutting recipe.
      Parameters:
      input - The input material.
      Returns:
      The changed recipe, so you can chain calls.
      Since:
      1.14
    • getInput

      Deprecated.
      Use getInputChoice() instead for more complete data.
      Get the input material.
      Returns:
      The input material.
      Since:
      1.14
    • setInputChoice

      Sets the input of this Stonecutting recipe.
      Parameters:
      input - The input choice.
      Returns:
      The changed recipe, so you can chain calls.
      Since:
      1.14
    • getInputChoice

      @NotNull public @NotNull RecipeChoice getInputChoice()
      Get the input choice.
      Returns:
      The input choice.
      Since:
      1.14
    • getResult

      @NotNull public @NotNull ItemStack getResult()
      Get the result of this recipe.
      Specified by:
      getResult in interface Recipe
      Returns:
      The resulting stack.
      Since:
      1.14
    • getKey

      @NotNull public @NotNull NamespacedKey getKey()
      Description copied from interface: Keyed
      Return the namespaced identifier for this object.
      Specified by:
      getKey in interface Keyed
      Returns:
      this object's key
      Since:
      1.14
    • getGroup

      @NotNull @Deprecated(since="26.1") public @NotNull String getGroup()
      Deprecated.
      no longer used for this recipe
      Get the group of this recipe. Recipes with the same group may be grouped together when displayed in the client.
      Returns:
      recipe group. An empty string denotes no group. May not be null.
      Since:
      1.14
    • setGroup

      @Deprecated(since="26.1") public void setGroup(@NotNull @NotNull String group)
      Deprecated.
      no longer used for this recipe
      Set the group of this recipe. Recipes with the same group may be grouped together when displayed in the client.
      Parameters:
      group - recipe group. An empty string denotes no group. May not be null.
      Since:
      1.14