Record Class DeclareRecipesPacket.DeclaredBlastingRecipe
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.DeclareRecipesPacket.DeclaredBlastingRecipe
- All Implemented Interfaces:
DeclareRecipesPacket.DeclaredRecipe
,Writeable
- Enclosing class:
- DeclareRecipesPacket
public static record DeclareRecipesPacket.DeclaredBlastingRecipe(@NotNull String recipeId, @NotNull String group, @NotNull DeclareRecipesPacket.Ingredient ingredient, @NotNull ItemStack result, float experience, int cookingTime)
extends Record
implements DeclareRecipesPacket.DeclaredRecipe
-
Constructor Summary
ConstructorsConstructorDescriptionDeclaredBlastingRecipe
(@NotNull String recipeId, @NotNull String group, @NotNull DeclareRecipesPacket.Ingredient ingredient, @NotNull ItemStack result, float experience, int cookingTime) Creates an instance of aDeclaredBlastingRecipe
record class.DeclaredBlastingRecipe
(BinaryReader reader) -
Method Summary
Modifier and TypeMethodDescriptionint
Returns the value of thecookingTime
record component.final boolean
Indicates whether some other object is "equal to" this one.float
Returns the value of theexperience
record component.@NotNull String
group()
Returns the value of thegroup
record component.final int
hashCode()
Returns a hash code value for this object.@NotNull DeclareRecipesPacket.Ingredient
Returns the value of theingredient
record component.@NotNull String
recipeId()
Returns the value of therecipeId
record component.@NotNull ItemStack
result()
Returns the value of theresult
record component.final String
toString()
Returns a string representation of this record class.@NotNull String
type()
void
write
(@NotNull BinaryWriter writer) Writes into aBinaryWriter
.
-
Constructor Details
-
DeclaredBlastingRecipe
-
DeclaredBlastingRecipe
public DeclaredBlastingRecipe(@NotNull @NotNull String recipeId, @NotNull @NotNull String group, @NotNull @NotNull DeclareRecipesPacket.Ingredient ingredient, @NotNull @NotNull ItemStack result, float experience, int cookingTime) Creates an instance of aDeclaredBlastingRecipe
record class.- Parameters:
recipeId
- the value for therecipeId
record componentgroup
- the value for thegroup
record componentingredient
- the value for theingredient
record componentresult
- the value for theresult
record componentexperience
- the value for theexperience
record componentcookingTime
- the value for thecookingTime
record component
-
-
Method Details
-
write
Description copied from interface:Writeable
Writes into aBinaryWriter
. -
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
-
ingredient
Returns the value of theingredient
record component.- Returns:
- the value of the
ingredient
record component
-
result
Returns the value of theresult
record component.- Returns:
- the value of the
result
record component
-
experience
public float experience()Returns the value of theexperience
record component.- Returns:
- the value of the
experience
record component
-
cookingTime
public int cookingTime()Returns the value of thecookingTime
record component.- Returns:
- the value of the
cookingTime
record component
-