Record Class DyedItemColor
java.lang.Object
java.lang.Record
net.minestom.server.item.component.DyedItemColor
-
Field Summary
Modifier and TypeFieldDescriptionstatic DyedItemColor
static final BinaryTagSerializer
<DyedItemColor> static final NetworkBuffer.Type
<DyedItemColor> -
Constructor Summary
ConstructorDescriptionDyedItemColor
(int color) DyedItemColor
(int color, boolean showInTooltip) DyedItemColor
(@NotNull RGBLike color) DyedItemColor
(@NotNull RGBLike color, boolean showInTooltip) Creates an instance of aDyedItemColor
record class. -
Method Summary
Modifier and TypeMethodDescription@NotNull RGBLike
color()
Returns the value of thecolor
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
Returns the value of theshowInTooltip
record component.final String
toString()
Returns a string representation of this record class.@NotNull DyedItemColor
@NotNull DyedItemColor
withTooltip
(boolean showInTooltip)
-
Field Details
-
LEATHER
-
NETWORK_TYPE
-
NBT_TYPE
-
-
Constructor Details
-
DyedItemColor
public DyedItemColor(int color) -
DyedItemColor
-
DyedItemColor
public DyedItemColor(int color, boolean showInTooltip) -
DyedItemColor
Creates an instance of aDyedItemColor
record class.- Parameters:
color
- the value for thecolor
record componentshowInTooltip
- the value for theshowInTooltip
record component
-
-
Method Details
-
withColor
-
withTooltip
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
color
Returns the value of thecolor
record component.- Returns:
- the value of the
color
record component
-
showInTooltip
public boolean showInTooltip()Returns the value of theshowInTooltip
record component.- Returns:
- the value of the
showInTooltip
record component
-