Interface ShapelessCraftingRecipe.Builder.ResultStep
-
- All Superinterfaces:
AbstractBuilder<RecipeRegistration>
,Buildable.Builder<RecipeRegistration>
,Builder<RecipeRegistration,ShapelessCraftingRecipe.Builder>
,ResettableBuilder<RecipeRegistration,ShapelessCraftingRecipe.Builder>
,ResourceKeyedBuilder<RecipeRegistration,ShapelessCraftingRecipe.Builder>
,ShapelessCraftingRecipe.Builder
- Enclosing interface:
- ShapelessCraftingRecipe.Builder
public static interface ShapelessCraftingRecipe.Builder.ResultStep extends ShapelessCraftingRecipe.Builder
In this Step set the result of the Recipe.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.spongepowered.api.item.recipe.crafting.ShapelessCraftingRecipe.Builder
ShapelessCraftingRecipe.Builder.EndStep, ShapelessCraftingRecipe.Builder.ResultStep
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ShapelessCraftingRecipe.Builder.ResultStep
remainingItems(java.util.function.Function<CraftingGridInventory,java.util.List<ItemStack>> remainingItemsFunction)
Sets the remainingItems function.ShapelessCraftingRecipe.Builder.EndStep
result(java.util.function.Function<CraftingGridInventory,ItemStack> resultFunction, ItemStack exemplaryResult)
Sets the result function and an exemplary result.ShapelessCraftingRecipe.Builder.EndStep
result(ItemStack result)
Sets the result and returns this builder.ShapelessCraftingRecipe.Builder.EndStep
result(ItemStackSnapshot result)
Sets the result and returns this builder.-
Methods inherited from interface net.kyori.adventure.util.Buildable.Builder
build
-
Methods inherited from interface org.spongepowered.api.util.ResourceKeyedBuilder
key
-
Methods inherited from interface org.spongepowered.api.item.recipe.crafting.ShapelessCraftingRecipe.Builder
addIngredients, addIngredients, addIngredients
-
-
-
-
Method Detail
-
remainingItems
ShapelessCraftingRecipe.Builder.ResultStep remainingItems(java.util.function.Function<CraftingGridInventory,java.util.List<ItemStack>> remainingItemsFunction)
Sets the remainingItems function. The function must return a list of the same size as the input CraftingGridInventory.- Parameters:
remainingItemsFunction
- the remaining items function- Returns:
- This builder, for chaining
-
result
ShapelessCraftingRecipe.Builder.EndStep result(ItemStackSnapshot result)
Sets the result and returns this builder. The result is theItemStack
created when the recipe is fulfilled.- Parameters:
result
- The result- Returns:
- This builder, for chaining
-
result
ShapelessCraftingRecipe.Builder.EndStep result(ItemStack result)
Sets the result and returns this builder. The result is theItemStack
created when the recipe is fulfilled.- Parameters:
result
- The result- Returns:
- This builder, for chaining
-
result
ShapelessCraftingRecipe.Builder.EndStep result(java.util.function.Function<CraftingGridInventory,ItemStack> resultFunction, ItemStack exemplaryResult)
Sets the result function and an exemplary result.The exemplary result is used for the recipe book.
- Parameters:
resultFunction
- The result functionexemplaryResult
- The exemplary result stack- Returns:
- This builder, for chaining
-
-