Record Class DyedItemColor
java.lang.Object
java.lang.Record
net.minestom.server.item.component.DyedItemColor
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic DyedItemColorstatic final BinaryTagSerializer<DyedItemColor> static final NetworkBuffer.Type<DyedItemColor> -
Constructor Summary
ConstructorsConstructorDescriptionDyedItemColor(int color) DyedItemColor(int color, boolean showInTooltip) DyedItemColor(@NotNull RGBLike color) DyedItemColor(@NotNull RGBLike color, boolean showInTooltip) Creates an instance of aDyedItemColorrecord class. -
Method Summary
Modifier and TypeMethodDescription@NotNull RGBLikecolor()Returns the value of thecolorrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of theshowInTooltiprecord component.final StringtoString()Returns a string representation of this record class.@NotNull DyedItemColor@NotNull DyedItemColorwithTooltip(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 aDyedItemColorrecord class.- Parameters:
color- the value for thecolorrecord componentshowInTooltip- the value for theshowInTooltiprecord 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 thecolorrecord component.- Returns:
- the value of the
colorrecord component
-
showInTooltip
public boolean showInTooltip()Returns the value of theshowInTooltiprecord component.- Returns:
- the value of the
showInTooltiprecord component
-