Package net.minecraft.recipe.display
Record Class RecipeDisplay.Serializer<T extends RecipeDisplay>
java.lang.Object
java.lang.Record
net.minecraft.recipe.display.RecipeDisplay.Serializer<T>
- Record Components:
codec-streamCodec-
- Enclosing interface:
RecipeDisplay
public static record RecipeDisplay.Serializer<T extends RecipeDisplay>(com.mojang.serialization.MapCodec<T extends RecipeDisplay> codec, PacketCodec<RegistryByteBuf,T extends RecipeDisplay> streamCodec)
extends Record
- Mappings:
Namespace Name named net/minecraft/recipe/display/RecipeDisplay$Serializerintermediary net/minecraft/class_10295$class_10296official ddi$anamed codecintermediary comp_3260official anamed streamCodecintermediary comp_3261official b
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final com.mojang.serialization.MapCodec<T> The field for thecodecrecord component.private final PacketCodec<RegistryByteBuf, T> The field for thestreamCodecrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionSerializer(com.mojang.serialization.MapCodec<T> mapCodec, PacketCodec<RegistryByteBuf, T> packetCodec) -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.MapCodec<T> codec()Returns the value of thecodecrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thestreamCodecrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
codec
The field for thecodecrecord component. -
streamCodec
The field for thestreamCodecrecord component.
-
-
Constructor Details
-
Serializer
public Serializer(com.mojang.serialization.MapCodec<T> mapCodec, PacketCodec<RegistryByteBuf, T> packetCodec)
-
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
codec
Returns the value of thecodecrecord component.- Returns:
- the value of the
codecrecord component
-
streamCodec
Returns the value of thestreamCodecrecord component.- Returns:
- the value of the
streamCodecrecord component
-