Record Class HoverEvent.EventData<T>

java.lang.Object
java.lang.Record
net.minecraft.text.HoverEvent.EventData<T>
Record Components:
action -
value -
Enclosing class:
HoverEvent

private static record HoverEvent.EventData<T>(HoverEvent.Action<T> action, T value) extends Record
Mappings:
Namespace Name
named net/minecraft/text/HoverEvent$EventData
intermediary net/minecraft/class_2568$class_8826
official yb$e
named action
intermediary comp_1985
official c
named value
intermediary comp_1986
official d
  • Field Details Link icon

    • action Link icon

      private final HoverEvent.Action<T> action
      The field for the action record component.
    • value Link icon

      private final T value
      The field for the value record component.
    • CODEC Link icon

      public static final com.mojang.serialization.MapCodec<HoverEvent.EventData<?>> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/text/HoverEvent$EventData;CODEC:Lcom/mojang/serialization/MapCodec;
      intermediary field_46610 Lnet/minecraft/class_2568$class_8826;field_46610:Lcom/mojang/serialization/MapCodec;
      official a Lyb$e;a:Lcom/mojang/serialization/MapCodec;
    • LEGACY_CODEC Link icon

      public static final com.mojang.serialization.MapCodec<HoverEvent.EventData<?>> LEGACY_CODEC
      Mappings:
      Namespace Name Mixin selector
      named LEGACY_CODEC Lnet/minecraft/text/HoverEvent$EventData;LEGACY_CODEC:Lcom/mojang/serialization/MapCodec;
      intermediary field_46611 Lnet/minecraft/class_2568$class_8826;field_46611:Lcom/mojang/serialization/MapCodec;
      official b Lyb$e;b:Lcom/mojang/serialization/MapCodec;
  • Constructor Details Link icon

  • Method Details Link icon

    • toString Link icon

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode Link icon

      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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals Link icon

      public final boolean equals(Object object)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • action Link icon

      public HoverEvent.Action<T> action()
      Returns the value of the action record component.
      Returns:
      the value of the action record component
    • value Link icon

      public T value()
      Returns the value of the value record component.
      Returns:
      the value of the value record component