Package net.minecraft.text
Record Class HoverEvent.EventData<T>
java.lang.Object
java.lang.Record
net.minecraft.text.HoverEvent.EventData<T>
- Record Components:
action
-value
-
- Enclosing class:
HoverEvent
- Mappings:
Namespace Name named net/minecraft/text/HoverEvent$EventData
intermediary net/minecraft/class_2568$class_8826
official xv$e
named action
intermediary comp_1985
official c
named value
intermediary comp_1986
official d
-
Field Summary
Modifier and TypeFieldDescriptionprivate final HoverEvent.Action
<T> The field for theaction
record component.static final com.mojang.serialization.MapCodec
<HoverEvent.EventData<?>> static final com.mojang.serialization.MapCodec
<HoverEvent.EventData<?>> private final T
The field for thevalue
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaction()
Returns the value of theaction
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.final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Field Details
-
action
The field for theaction
record component. -
value
The field for thevalue
record component. -
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
Lxv$e;a:Lcom/mojang/serialization/MapCodec;
-
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
Lxv$e;b:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
EventData
EventData(HoverEvent.Action<T> action, T t)
-
-
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)
. -
action
Returns the value of theaction
record component.- Returns:
- the value of the
action
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-