Record Class DeclareRecipesPacket.DeclaredSmithingTransformRecipe
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.DeclareRecipesPacket.DeclaredSmithingTransformRecipe
- All Implemented Interfaces:
NetworkBuffer.Writer,DeclareRecipesPacket.DeclaredRecipe
- Enclosing class:
DeclareRecipesPacket
public static record DeclareRecipesPacket.DeclaredSmithingTransformRecipe(String recipeId, DeclareRecipesPacket.Ingredient template, DeclareRecipesPacket.Ingredient base, DeclareRecipesPacket.Ingredient addition, ItemStack result)
extends Record
implements DeclareRecipesPacket.DeclaredRecipe
-
Constructor Summary
ConstructorsConstructorDescriptionDeclaredSmithingTransformRecipe(String recipeId, DeclareRecipesPacket.Ingredient template, DeclareRecipesPacket.Ingredient base, DeclareRecipesPacket.Ingredient addition, ItemStack result) Creates an instance of aDeclaredSmithingTransformReciperecord class.DeclaredSmithingTransformRecipe(@NotNull NetworkBuffer reader) -
Method Summary
Modifier and TypeMethodDescriptionaddition()Returns the value of theadditionrecord component.base()Returns the value of thebaserecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.recipeId()Returns the value of therecipeIdrecord component.result()Returns the value of theresultrecord component.template()Returns the value of thetemplaterecord component.final StringtoString()Returns a string representation of this record class.@NotNull Stringtype()voidwrite(@NotNull NetworkBuffer writer)
-
Constructor Details
-
DeclaredSmithingTransformRecipe
-
DeclaredSmithingTransformRecipe
public DeclaredSmithingTransformRecipe(String recipeId, DeclareRecipesPacket.Ingredient template, DeclareRecipesPacket.Ingredient base, DeclareRecipesPacket.Ingredient addition, ItemStack result) Creates an instance of aDeclaredSmithingTransformReciperecord class.- Parameters:
recipeId- the value for therecipeIdrecord componenttemplate- the value for thetemplaterecord componentbase- the value for thebaserecord componentaddition- the value for theadditionrecord componentresult- the value for theresultrecord component
-
-
Method Details
-
write
- Specified by:
writein interfaceNetworkBuffer.Writer
-
type
- Specified by:
typein 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. All components in this record class are compared withObjects::equals(Object,Object). -
recipeId
Returns the value of therecipeIdrecord component.- Specified by:
recipeIdin interfaceDeclareRecipesPacket.DeclaredRecipe- Returns:
- the value of the
recipeIdrecord component
-
template
Returns the value of thetemplaterecord component.- Returns:
- the value of the
templaterecord component
-
base
Returns the value of thebaserecord component.- Returns:
- the value of the
baserecord component
-
addition
Returns the value of theadditionrecord component.- Returns:
- the value of the
additionrecord component
-
result
Returns the value of theresultrecord component.- Returns:
- the value of the
resultrecord component
-