Record Class SlotDisplay.Composite
java.lang.Object
java.lang.Record
net.minecraft.world.item.crafting.display.SlotDisplay.Composite
- All Implemented Interfaces:
SlotDisplay
- Enclosing interface:
SlotDisplay
public static record SlotDisplay.Composite(List<SlotDisplay> contents)
extends Record
implements SlotDisplay
-
Nested Class Summary
Nested classes/interfaces inherited from interface SlotDisplay
SlotDisplay.AnyFuel, SlotDisplay.Composite, SlotDisplay.DyedSlotDemo, SlotDisplay.Empty, SlotDisplay.ItemSlotDisplay, SlotDisplay.ItemStackContentsFactory, SlotDisplay.ItemStackSlotDisplay, SlotDisplay.OnlyWithComponent, SlotDisplay.SmithingTrimDemoSlotDisplay, SlotDisplay.TagSlotDisplay, SlotDisplay.Type<T>, SlotDisplay.WithAnyPotion, SlotDisplay.WithRemainder -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List<SlotDisplay> The field for thecontentsrecord component.static final com.mojang.serialization.MapCodec<SlotDisplay.Composite> static final StreamCodec<RegistryFriendlyByteBuf, SlotDisplay.Composite> static final SlotDisplay.Type<SlotDisplay.Composite> Fields inherited from interface SlotDisplay
CODEC -
Constructor Summary
ConstructorsConstructorDescriptionComposite(List<SlotDisplay> contents) Creates an instance of aCompositerecord class. -
Method Summary
Modifier and TypeMethodDescriptioncontents()Returns the value of thecontentsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanisEnabled(FeatureFlagSet enabledFeatures) <T> Stream<T> resolve(ContextMap context, DisplayContentsFactory<T> factory) final StringtoString()Returns a string representation of this record class.type()Methods inherited from interface SlotDisplay
resolveForFirstStack, resolveForStacks
-
Field Details
-
contents
The field for thecontentsrecord component. -
MAP_CODEC
-
STREAM_CODEC
-
TYPE
-
-
Constructor Details
-
Composite
Creates an instance of aCompositerecord class.- Parameters:
contents- the value for thecontentsrecord component
-
-
Method Details
-
type
- Specified by:
typein interfaceSlotDisplay
-
resolve
- Specified by:
resolvein interfaceSlotDisplay
-
isEnabled
- Specified by:
isEnabledin interfaceSlotDisplay
-
toString
-
hashCode
-
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 thecontentsrecord component.- Returns:
- the value of the
contentsrecord component
-