Package net.minestom.server.recipe
Record Class Recipe.Shapeless
java.lang.Object
java.lang.Record
net.minestom.server.recipe.Recipe.Shapeless
- All Implemented Interfaces:
NetworkBuffer.Writer,Recipe
- Enclosing interface:
Recipe
public static record Recipe.Shapeless(String id, String group, RecipeCategory.Crafting category, List<Recipe.Ingredient> ingredients, ItemStack result)
extends Record
implements Recipe
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minestom.server.recipe.Recipe
Recipe.Blasting, Recipe.CampfireCooking, Recipe.Ingredient, Recipe.Shaped, Recipe.Shapeless, Recipe.Smelting, Recipe.SmithingTransform, Recipe.SmithingTrim, Recipe.Smoking, Recipe.Stonecutting -
Field Summary
Fields inherited from interface net.minestom.server.recipe.Recipe
MAX_INGREDIENTS -
Constructor Summary
ConstructorsConstructorDescriptionShapeless(@NotNull String id, @NotNull NetworkBuffer reader) Shapeless(String id, String group, RecipeCategory.Crafting category, List<Recipe.Ingredient> ingredients, ItemStack result) Creates an instance of aShapelessrecord 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.id()Returns the value of theidrecord component.Returns the value of theingredientsrecord component.result()Returns the value of theresultrecord component.final StringtoString()Returns a string representation of this record class.@NotNull RecipeTypetype()voidwrite(@NotNull NetworkBuffer writer)
-
Constructor Details
-
Shapeless
-
Shapeless
public Shapeless(String id, String group, RecipeCategory.Crafting category, List<Recipe.Ingredient> ingredients, ItemStack result) Creates an instance of aShapelessrecord class.- Parameters:
id- the value for theidrecord componentgroup- the value for thegrouprecord componentcategory- the value for thecategoryrecord componentingredients- the value for theingredientsrecord componentresult- the value for theresultrecord component
-
-
Method Details
-
write
- Specified by:
writein interfaceNetworkBuffer.Writer
-
type
-
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). -
id
Returns the value of theidrecord component. -
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
-
ingredients
Returns the value of theingredientsrecord component.- Returns:
- the value of the
ingredientsrecord component
-
result
Returns the value of theresultrecord component.- Returns:
- the value of the
resultrecord component
-