Package net.minestom.server.recipe
Record Class Recipe.SmithingTrim
java.lang.Object
java.lang.Record
net.minestom.server.recipe.Recipe.SmithingTrim
- All Implemented Interfaces:
NetworkBuffer.Writer,Recipe
- Enclosing interface:
Recipe
public static record Recipe.SmithingTrim(String id, Recipe.Ingredient template, Recipe.Ingredient base, Recipe.Ingredient addition)
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
ConstructorsConstructorDescriptionSmithingTrim(@NotNull String id, @NotNull NetworkBuffer reader) SmithingTrim(String id, Recipe.Ingredient template, Recipe.Ingredient base, Recipe.Ingredient addition) Creates an instance of aSmithingTrimrecord class. -
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.id()Returns the value of theidrecord component.template()Returns the value of thetemplaterecord component.final StringtoString()Returns a string representation of this record class.@NotNull RecipeTypetype()voidwrite(@NotNull NetworkBuffer writer)
-
Constructor Details
-
SmithingTrim
-
SmithingTrim
public SmithingTrim(String id, Recipe.Ingredient template, Recipe.Ingredient base, Recipe.Ingredient addition) Creates an instance of aSmithingTrimrecord class.- Parameters:
id- the value for theidrecord componenttemplate- the value for thetemplaterecord componentbase- the value for thebaserecord componentaddition- the value for theadditionrecord 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. -
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
-