Package net.minecraft.village
Record Class VillagerGossips.GossipEntry
java.lang.Object
java.lang.Record
net.minecraft.village.VillagerGossips.GossipEntry
- Record Components:
target
-type
-value
-
- Enclosing class:
VillagerGossips
private static record VillagerGossips.GossipEntry(UUID target, VillageGossipType type, int value)
extends Record
- Mappings:
Namespace Name named net/minecraft/village/VillagerGossips$GossipEntry
intermediary net/minecraft/class_4136$class_4138
official ccr$b
named target
intermediary comp_1180
official c
named type
intermediary comp_1181
official d
named value
intermediary comp_1182
official e
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<VillagerGossips.GossipEntry> static final com.mojang.serialization.Codec
<List<VillagerGossips.GossipEntry>> private final UUID
The field for thetarget
record component.private final VillageGossipType
The field for thetype
record component.private final int
The field for thevalue
record component. -
Constructor Summary
ConstructorDescriptionGossipEntry
(UUID target, VillageGossipType type, int value) Creates an instance of aGossipEntry
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.int
getValue()
final int
hashCode()
Returns a hash code value for this object.target()
Returns the value of thetarget
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.int
value()
Returns the value of thevalue
record component.
-
Field Details
-
target
The field for thetarget
record component. -
type
The field for thetype
record component. -
value
private final int valueThe field for thevalue
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/village/VillagerGossips$GossipEntry;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_41670
Lnet/minecraft/class_4136$class_4138;field_41670:Lcom/mojang/serialization/Codec;
official a
Lccr$b;a:Lcom/mojang/serialization/Codec;
-
LIST_CODEC
- Mappings:
Namespace Name Mixin selector named LIST_CODEC
Lnet/minecraft/village/VillagerGossips$GossipEntry;LIST_CODEC:Lcom/mojang/serialization/Codec;
intermediary field_41671
Lnet/minecraft/class_4136$class_4138;field_41671:Lcom/mojang/serialization/Codec;
official b
Lccr$b;b:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
GossipEntry
GossipEntry(UUID target, VillageGossipType type, int value) Creates an instance of aGossipEntry
record class.
-
-
Method Details
-
getValue
public int getValue()- Mappings:
Namespace Name Mixin selector named getValue
Lnet/minecraft/village/VillagerGossips$GossipEntry;getValue()I
intermediary method_19083
Lnet/minecraft/class_4136$class_4138;method_19083()I
official a
Lccr$b;a()I
-
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 '=='. -
target
Returns the value of thetarget
record component.- Returns:
- the value of the
target
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
value
public int value()Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-