Record Class ShapedRecipePattern
java.lang.Object
java.lang.Record
net.minecraft.world.item.crafting.ShapedRecipePattern
public record ShapedRecipePattern(int width, int height, NonNullList<Ingredient> ingredients, Optional<ShapedRecipePattern.Data> data)
extends Record
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Optional<ShapedRecipePattern.Data> The field for thedatarecord component.private final intThe field for theheightrecord component.private final NonNullList<Ingredient> The field for theingredientsrecord component.static final com.mojang.serialization.MapCodec<ShapedRecipePattern> private static final intstatic final StreamCodec<RegistryFriendlyByteBuf, ShapedRecipePattern> private final intThe field for thewidthrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionShapedRecipePattern(int width, int height, NonNullList<Ingredient> ingredients, Optional<ShapedRecipePattern.Data> data) Creates an instance of aShapedRecipePatternrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondata()Returns the value of thedatarecord component.final booleanIndicates whether some other object is "equal to" this one.private static intfirstNonSpace(String p_309836_) private static ShapedRecipePatternfromNetwork(RegistryFriendlyByteBuf p_332293_) final inthashCode()Returns a hash code value for this object.intheight()Returns the value of theheightrecord component.Returns the value of theingredientsrecord component.private static intlastNonSpace(String p_312853_) booleanmatches(CraftingContainer p_310690_) private booleanmatches(CraftingContainer p_313091_, int p_311269_, int p_310676_, boolean p_313153_) static ShapedRecipePatternof(Map<Character, Ingredient> p_310983_, String... p_310430_) static ShapedRecipePattern(package private) static String[]private voidtoNetwork(RegistryFriendlyByteBuf p_335258_) final StringtoString()Returns a string representation of this record class.private static com.mojang.serialization.DataResult<ShapedRecipePattern> unpack(ShapedRecipePattern.Data p_312333_) intwidth()Returns the value of thewidthrecord component.
-
Field Details
-
width
private final int widthThe field for thewidthrecord component. -
height
private final int heightThe field for theheightrecord component. -
ingredients
The field for theingredientsrecord component. -
data
The field for thedatarecord component. -
MAX_SIZE
private static final int MAX_SIZE- See Also:
-
MAP_CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
ShapedRecipePattern
public ShapedRecipePattern(int width, int height, NonNullList<Ingredient> ingredients, Optional<ShapedRecipePattern.Data> data) Creates an instance of aShapedRecipePatternrecord class.- Parameters:
width- the value for thewidthrecord componentheight- the value for theheightrecord componentingredients- the value for theingredientsrecord componentdata- the value for thedatarecord component
-
-
Method Details
-
of
-
of
-
unpack
private static com.mojang.serialization.DataResult<ShapedRecipePattern> unpack(ShapedRecipePattern.Data p_312333_) -
shrink
-
firstNonSpace
-
lastNonSpace
-
matches
-
matches
private boolean matches(CraftingContainer p_313091_, int p_311269_, int p_310676_, boolean p_313153_) -
toNetwork
-
fromNetwork
-
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 '=='. -
width
public int width()Returns the value of thewidthrecord component.- Returns:
- the value of the
widthrecord component
-
height
public int height()Returns the value of theheightrecord component.- Returns:
- the value of the
heightrecord component
-
ingredients
Returns the value of theingredientsrecord component.- Returns:
- the value of the
ingredientsrecord component
-
data
Returns the value of thedatarecord component.- Returns:
- the value of the
datarecord component
-