Package net.minecraft.recipe.display
Record Class SlotDisplay.CompositeSlotDisplay
java.lang.Object
java.lang.Record
net.minecraft.recipe.display.SlotDisplay.CompositeSlotDisplay
- Record Components:
contents
-
- All Implemented Interfaces:
SlotDisplay
- Enclosing interface:
SlotDisplay
public static record SlotDisplay.CompositeSlotDisplay(List<SlotDisplay> contents)
extends Record
implements SlotDisplay
- Mappings:
Namespace Name named net/minecraft/recipe/display/SlotDisplay$CompositeSlotDisplay
intermediary net/minecraft/class_10302$class_10304
official ddo$b
named contents
intermediary comp_3272
official f
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.recipe.display.SlotDisplay
SlotDisplay.AnyFuelSlotDisplay, SlotDisplay.CompositeSlotDisplay, SlotDisplay.EmptySlotDisplay, SlotDisplay.ItemSlotDisplay, SlotDisplay.NoopDisplayedItemFactory, SlotDisplay.Serializer<T extends SlotDisplay>, SlotDisplay.SmithingTrimSlotDisplay, SlotDisplay.StackSlotDisplay, SlotDisplay.TagSlotDisplay, SlotDisplay.WithRemainderSlotDisplay
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<SlotDisplay.CompositeSlotDisplay> private final List
<SlotDisplay> The field for thecontents
record component.static final PacketCodec
<RegistryByteBuf, SlotDisplay.CompositeSlotDisplay> static final SlotDisplay.Serializer
<SlotDisplay.CompositeSlotDisplay> -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription<T> Stream
<T> appendStacks
(ContextParameterMap parameters, DisplayedItemFactory<T> factory) contents()
Returns the value of thecontents
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.boolean
isEnabled
(FeatureSet features) final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.recipe.display.SlotDisplay
getFirst, getStacks
-
Field Details
-
contents
The field for thecontents
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/recipe/display/SlotDisplay$CompositeSlotDisplay;CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_54678
Lnet/minecraft/class_10302$class_10304;field_54678:Lcom/mojang/serialization/MapCodec;
official c
Lddo$b;c:Lcom/mojang/serialization/MapCodec;
-
PACKET_CODEC
- Mappings:
Namespace Name Mixin selector named PACKET_CODEC
Lnet/minecraft/recipe/display/SlotDisplay$CompositeSlotDisplay;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_54679
Lnet/minecraft/class_10302$class_10304;field_54679:Lnet/minecraft/class_9139;
official d
Lddo$b;d:Lzt;
-
SERIALIZER
- Mappings:
Namespace Name Mixin selector named SERIALIZER
Lnet/minecraft/recipe/display/SlotDisplay$CompositeSlotDisplay;SERIALIZER:Lnet/minecraft/recipe/display/SlotDisplay$Serializer;
intermediary field_54680
Lnet/minecraft/class_10302$class_10304;field_54680:Lnet/minecraft/class_10302$class_10312;
official e
Lddo$b;e:Lddo$i;
-
-
Constructor Details
-
CompositeSlotDisplay
-
-
Method Details
-
serializer
- Specified by:
serializer
in interfaceSlotDisplay
- Mappings:
Namespace Name Mixin selector named serializer
Lnet/minecraft/recipe/display/SlotDisplay;serializer()Lnet/minecraft/recipe/display/SlotDisplay$Serializer;
intermediary method_64736
Lnet/minecraft/class_10302;method_64736()Lnet/minecraft/class_10302$class_10312;
official a
Lddo;a()Lddo$i;
-
appendStacks
- Specified by:
appendStacks
in interfaceSlotDisplay
- Mappings:
Namespace Name Mixin selector named appendStacks
Lnet/minecraft/recipe/display/SlotDisplay;appendStacks(Lnet/minecraft/util/context/ContextParameterMap;Lnet/minecraft/recipe/display/DisplayedItemFactory;)Ljava/util/stream/Stream;
intermediary method_64739
Lnet/minecraft/class_10302;method_64739(Lnet/minecraft/class_10352;Lnet/minecraft/class_10358;)Ljava/util/stream/Stream;
official a
Lddo;a(Lbbp;Lddg;)Ljava/util/stream/Stream;
-
isEnabled
- Specified by:
isEnabled
in interfaceSlotDisplay
- Mappings:
Namespace Name Mixin selector named isEnabled
Lnet/minecraft/recipe/display/SlotDisplay;isEnabled(Lnet/minecraft/resource/featuretoggle/FeatureSet;)Z
intermediary method_64737
Lnet/minecraft/class_10302;method_64737(Lnet/minecraft/class_7699;)Z
official a
Lddo;a(Lcss;)Z
-
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)
. -
contents
Returns the value of thecontents
record component.- Returns:
- the value of the
contents
record component
-