Record Class DeclareRecipesPacket.DeclaredShapedCraftingRecipe
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.DeclareRecipesPacket.DeclaredShapedCraftingRecipe
- All Implemented Interfaces:
NetworkBuffer.Writer
,DeclareRecipesPacket.DeclaredRecipe
- Enclosing class:
DeclareRecipesPacket
public static record DeclareRecipesPacket.DeclaredShapedCraftingRecipe(@NotNull String recipeId, @NotNull String group, RecipeCategory.Crafting category, int width, int height, @NotNull List<DeclareRecipesPacket.Ingredient> ingredients, @NotNull ItemStack result, boolean showNotification)
extends Record
implements DeclareRecipesPacket.DeclaredRecipe
-
Constructor Summary
ConstructorDescriptionDeclaredShapedCraftingRecipe
(@NotNull String recipeId, @NotNull String group, RecipeCategory.Crafting category, int width, int height, @NotNull List<DeclareRecipesPacket.Ingredient> ingredients, @NotNull ItemStack result, boolean showNotification) Creates an instance of aDeclaredShapedCraftingRecipe
record class.DeclaredShapedCraftingRecipe
(@NotNull String recipeId, @NotNull NetworkBuffer reader) -
Method Summary
Modifier and TypeMethodDescriptioncategory()
Returns the value of thecategory
record component.final boolean
Indicates whether some other object is "equal to" this one.@NotNull String
group()
Returns the value of thegroup
record component.final int
hashCode()
Returns a hash code value for this object.int
height()
Returns the value of theheight
record component.@NotNull List
<DeclareRecipesPacket.Ingredient> Returns the value of theingredients
record component.@NotNull String
recipeId()
Returns the value of therecipeId
record component.@NotNull ItemStack
result()
Returns the value of theresult
record component.boolean
Returns the value of theshowNotification
record component.final String
toString()
Returns a string representation of this record class.@NotNull RecipeType
type()
int
width()
Returns the value of thewidth
record component.void
write
(@NotNull NetworkBuffer writer)
-
Constructor Details
-
DeclaredShapedCraftingRecipe
public DeclaredShapedCraftingRecipe(@NotNull @NotNull String recipeId, @NotNull @NotNull String group, @NotNull RecipeCategory.Crafting category, int width, int height, @NotNull @NotNull List<DeclareRecipesPacket.Ingredient> ingredients, @NotNull @NotNull ItemStack result, boolean showNotification) Creates an instance of aDeclaredShapedCraftingRecipe
record class.- Parameters:
recipeId
- the value for therecipeId
record componentgroup
- the value for thegroup
record componentcategory
- the value for thecategory
record componentwidth
- the value for thewidth
record componentheight
- the value for theheight
record componentingredients
- the value for theingredients
record componentresult
- the value for theresult
record componentshowNotification
- the value for theshowNotification
record component
-
DeclaredShapedCraftingRecipe
public DeclaredShapedCraftingRecipe(@NotNull @NotNull String recipeId, @NotNull @NotNull NetworkBuffer reader)
-
-
Method Details
-
write
- Specified by:
write
in interfaceNetworkBuffer.Writer
-
type
- Specified by:
type
in interfaceDeclareRecipesPacket.DeclaredRecipe
-
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 '=='. -
recipeId
Returns the value of therecipeId
record component.- Specified by:
recipeId
in interfaceDeclareRecipesPacket.DeclaredRecipe
- Returns:
- the value of the
recipeId
record component
-
group
Returns the value of thegroup
record component.- Returns:
- the value of the
group
record component
-
category
Returns the value of thecategory
record component.- Returns:
- the value of the
category
record component
-
width
public int width()Returns the value of thewidth
record component.- Returns:
- the value of the
width
record component
-
height
public int height()Returns the value of theheight
record component.- Returns:
- the value of the
height
record component
-
ingredients
Returns the value of theingredients
record component.- Returns:
- the value of the
ingredients
record component
-
result
Returns the value of theresult
record component.- Returns:
- the value of the
result
record component
-
showNotification
public boolean showNotification()Returns the value of theshowNotification
record component.- Returns:
- the value of the
showNotification
record component
-