Class CookingResult
- java.lang.Object
- 
- org.spongepowered.api.item.recipe.cooking.CookingResult
 
- 
 public final class CookingResult extends java.lang.ObjectThe result of fulfilling aCookingRecipe.
- 
- 
Constructor SummaryConstructors Constructor Description CookingResult(ItemStackSnapshot result, double experience)Creates a newCookingResult.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)doubleexperience()Returns the amount of experience released after completing a recipe.inthashCode()ItemStackSnapshotresult()This method should be used instead of theRecipe.exemplaryResult()method, as it customizes the result further depending on the specified ingredientItemStackSnapshot.java.lang.StringtoString()
 
- 
- 
- 
Constructor Detail- 
CookingResultpublic CookingResult(ItemStackSnapshot result, double experience) Creates a newCookingResult.Note that this may be replaced with a static of method in the future. - Parameters:
- result- The result of the cooking recipe
- experience- The experience that should be created from this result
 
 
- 
 - 
Method Detail- 
resultpublic ItemStackSnapshot result() This method should be used instead of theRecipe.exemplaryResult()method, as it customizes the result further depending on the specified ingredientItemStackSnapshot. It is advised to use the output ofRecipe.exemplaryResult(), modify it accordingly, andreturnit.- Returns:
- The result of fulfilling the requirements of a
         CookingRecipe
 
 - 
experiencepublic double experience() Returns the amount of experience released after completing a recipe.- Returns:
- The amount of experience released after fulfilling the
         requirements of a CookingRecipe
 
 - 
equalspublic boolean equals(java.lang.Object o) - Overrides:
- equalsin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 
- 
 
-