Record Class SlotDisplay.Dyed
java.lang.Object
java.lang.Record
net.minestom.server.recipe.display.SlotDisplay.Dyed
- All Implemented Interfaces:
ComponentHolder<SlotDisplay>, SlotDisplay
- Enclosing interface:
SlotDisplay
public static record SlotDisplay.Dyed(SlotDisplay dye, SlotDisplay target)
extends Record
implements SlotDisplay
-
Nested Class Summary
Nested classes/interfaces inherited from interface SlotDisplay
SlotDisplay.AnyFuel, SlotDisplay.Composite, SlotDisplay.Dyed, SlotDisplay.Empty, SlotDisplay.Item, SlotDisplay.ItemStack, SlotDisplay.OnlyWithComponent, SlotDisplay.SmithingTrim, SlotDisplay.Tag, SlotDisplay.WithAnyPotion, SlotDisplay.WithRemainder -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDyed(SlotDisplay dye, SlotDisplay target) Creates an instance of aDyedrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondye()Returns the value of thedyerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.target()Returns the value of thetargetrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from interface ComponentHolder
visitComponentsMethods inherited from interface SlotDisplay
components, copyWithOperator
-
Field Details
-
NETWORK_TYPE
-
-
Constructor Details
-
Dyed
Creates an instance of aDyedrecord class.- Parameters:
dye- the value for thedyerecord componenttarget- the value for thetargetrecord component
-
-
Method Details
-
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). -
dye
Returns the value of thedyerecord component.- Returns:
- the value of the
dyerecord component
-
target
Returns the value of thetargetrecord component.- Returns:
- the value of the
targetrecord component
-