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 official vl$d
intermediary net/minecraft/class_2568$class_8826
named net/minecraft/text/HoverEvent$EventData
official c
intermediary comp_1985
named action
official d
intermediary comp_1986
named value
-
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 official a
Lvl$d;a:Lcom/mojang/serialization/MapCodec;
intermediary field_46610
Lnet/minecraft/class_2568$class_8826;field_46610:Lcom/mojang/serialization/MapCodec;
named CODEC
Lnet/minecraft/text/HoverEvent$EventData;CODEC:Lcom/mojang/serialization/MapCodec;
-
LEGACY_CODEC
- Mappings:
Namespace Name Mixin selector official b
Lvl$d;b:Lcom/mojang/serialization/MapCodec;
intermediary field_46611
Lnet/minecraft/class_2568$class_8826;field_46611:Lcom/mojang/serialization/MapCodec;
named LEGACY_CODEC
Lnet/minecraft/text/HoverEvent$EventData;LEGACY_CODEC: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
-