Package net.minestom.server.recipe
Record Class Recipe.Transmute
java.lang.Object
java.lang.Record
net.minestom.server.recipe.Recipe.Transmute
- All Implemented Interfaces:
Recipe.Data
- Enclosing class:
Recipe
public static record Recipe.Transmute(String group, RecipeCategory.Crafting category, Recipe.Ingredient input, Recipe.Ingredient material, Material result)
extends Record
implements Recipe.Data
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTransmute(String group, RecipeCategory.Crafting category, Recipe.Ingredient input, Recipe.Ingredient material, Material result) Creates an instance of aTransmuterecord class. -
Method Summary
Modifier and TypeMethodDescriptioncategory()Returns the value of thecategoryrecord component.final booleanIndicates whether some other object is "equal to" this one.group()Returns the value of thegrouprecord component.final inthashCode()Returns a hash code value for this object.input()Returns the value of theinputrecord component.material()Returns the value of thematerialrecord component.result()Returns the value of theresultrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
Transmute
public Transmute(String group, RecipeCategory.Crafting category, Recipe.Ingredient input, Recipe.Ingredient material, Material result) Creates an instance of aTransmuterecord class.- Parameters:
group- the value for thegrouprecord componentcategory- the value for thecategoryrecord componentinput- the value for theinputrecord componentmaterial- the value for thematerialrecord componentresult- the value for theresultrecord component
-
-
Method Details
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
group
Returns the value of thegrouprecord component.- Returns:
- the value of the
grouprecord component
-
category
Returns the value of thecategoryrecord component.- Returns:
- the value of the
categoryrecord component
-
input
Returns the value of theinputrecord component.- Returns:
- the value of the
inputrecord component
-
material
Returns the value of thematerialrecord component.- Returns:
- the value of the
materialrecord component
-
result
Returns the value of theresultrecord component.- Returns:
- the value of the
resultrecord component
-