Record Class CookingResult
java.lang.Object
java.lang.Record
org.spongepowered.api.item.recipe.cooking.CookingResult
The result of fulfilling a
CookingRecipe
.-
Constructor Summary
ConstructorDescriptionCookingResult
(ItemStackLike result, double experience) Creates a newCookingResult
.CookingResult
(ItemStackSnapshot result, double experience) Creates a newCookingResult
. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.double
Returns the amount of experience released after completing a recipe.final int
hashCode()
Returns a hash code value for this object.result()
This method should be used instead of theRecipe.exemplaryResult()
method, as it customizes the result further depending on the specified ingredientItemStackSnapshot
.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
CookingResult
Creates a newCookingResult
.Note that this may be replaced with a static of method in the future.
- Parameters:
result
- The result of the cooking recipeexperience
- The experience that should be created from this result
-
CookingResult
Creates a newCookingResult
.Note that this may be replaced with a static of method in the future.
- Parameters:
result
- The result of the cooking recipeexperience
- The experience that should be created from this result
-
-
Method Details
-
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, andreturn
it.- Returns:
- The result of fulfilling the requirements of a
CookingRecipe
-
experience
public 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
-
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. -
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. -
equals
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 withObjects::equals(Object,Object)
; primitive components are compared with '=='.
-