Package net.minecraft.recipe.display
Record Class SlotDisplay.Serializer<T extends SlotDisplay>
java.lang.Object
java.lang.Record
net.minecraft.recipe.display.SlotDisplay.Serializer<T>
- Record Components:
codec
-streamCodec
-
- Enclosing interface:
SlotDisplay
public static record SlotDisplay.Serializer<T extends SlotDisplay>(com.mojang.serialization.MapCodec<T extends SlotDisplay> codec, PacketCodec<RegistryByteBuf,T extends SlotDisplay> streamCodec)
extends Record
- Mappings:
Namespace Name named net/minecraft/recipe/display/SlotDisplay$Serializer
intermediary net/minecraft/class_10302$class_10312
official ddo$i
named codec
intermediary comp_3276
official a
named streamCodec
intermediary comp_3277
official b
-
Field Summary
Modifier and TypeFieldDescriptionprivate final com.mojang.serialization.MapCodec
<T> The field for thecodec
record component.private final PacketCodec
<RegistryByteBuf, T> The field for thestreamCodec
record component. -
Constructor Summary
ConstructorDescriptionSerializer
(com.mojang.serialization.MapCodec<T> mapCodec, PacketCodec<RegistryByteBuf, T> packetCodec) -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.MapCodec
<T> codec()
Returns the value of thecodec
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thestreamCodec
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
codec
The field for thecodec
record component. -
streamCodec
The field for thestreamCodec
record 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 thecodec
record component.- Returns:
- the value of the
codec
record component
-
streamCodec
Returns the value of thestreamCodec
record component.- Returns:
- the value of the
streamCodec
record component
-