Record Class TrackedWaypointPacket.Icon
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.TrackedWaypointPacket.Icon
- Enclosing class:
TrackedWaypointPacket
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TrackedWaypointPacket.Iconstatic final net.kyori.adventure.key.Keystatic final NetworkBuffer.Type<TrackedWaypointPacket.Icon> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@Nullable 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.@NotNull net.kyori.adventure.key.Keystyle()Returns the value of thestylerecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
DEFAULT_STYLE
public static final net.kyori.adventure.key.Key DEFAULT_STYLE -
DEFAULT
-
NETWORK_TYPE
-
-
Constructor Details
-
Icon
public Icon(@NotNull @NotNull net.kyori.adventure.key.Key style) -
Icon
Creates an instance of aIconrecord class.- Parameters:
style- the value for thestylerecord componentcolor- the value for thecolorrecord component
-
-
Method Details
-
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). -
style
@NotNull public @NotNull net.kyori.adventure.key.Key style()Returns the value of thestylerecord component.- Returns:
- the value of the
stylerecord component
-
color
Returns the value of thecolorrecord component.- Returns:
- the value of the
colorrecord component
-