Record Class PackageOrderWithCrafts.CraftingEntry
java.lang.Object
java.lang.Record
com.simibubi.create.content.logistics.stockTicker.PackageOrderWithCrafts.CraftingEntry
- Enclosing class:
PackageOrderWithCrafts
public static record PackageOrderWithCrafts.CraftingEntry(PackageOrder pattern, int count)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<PackageOrderWithCrafts.CraftingEntry> static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf, PackageOrderWithCrafts.CraftingEntry> -
Constructor Summary
ConstructorsConstructorDescriptionCraftingEntry(PackageOrder pattern, int count) Creates an instance of aCraftingEntryrecord class. -
Method Summary
Modifier and TypeMethodDescriptionintcount()Returns the value of thecountrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.pattern()Returns the value of thepatternrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
CODEC
-
STREAM_CODEC
public static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf,PackageOrderWithCrafts.CraftingEntry> STREAM_CODEC
-
-
Constructor Details
-
CraftingEntry
Creates an instance of aCraftingEntryrecord class.- Parameters:
pattern- the value for thepatternrecord componentcount- the value for thecountrecord component
-
-
Method Details
-
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 '=='. -
pattern
Returns the value of thepatternrecord component.- Returns:
- the value of the
patternrecord component
-
count
public int count()Returns the value of thecountrecord component.- Returns:
- the value of the
countrecord component
-