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 official bov$b
intermediary net/minecraft/class_4136$class_4138
named net/minecraft/village/VillagerGossips$GossipEntry
official c
intermediary comp_1180
named target
official d
intermediary comp_1181
named type
official e
intermediary comp_1182
named value
-
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 official a
Lbov$b;a:Lcom/mojang/serialization/Codec;
intermediary field_41670
Lnet/minecraft/class_4136$class_4138;field_41670:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/village/VillagerGossips$GossipEntry;CODEC:Lcom/mojang/serialization/Codec;
-
LIST_CODEC
- Mappings:
Namespace Name Mixin selector official b
Lbov$b;b:Lcom/mojang/serialization/Codec;
intermediary field_41671
Lnet/minecraft/class_4136$class_4138;field_41671:Lcom/mojang/serialization/Codec;
named LIST_CODEC
Lnet/minecraft/village/VillagerGossips$GossipEntry;LIST_CODEC: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 official a
Lbov$b;a()I
intermediary method_19083
Lnet/minecraft/class_4136$class_4138;method_19083()I
named getValue
Lnet/minecraft/village/VillagerGossips$GossipEntry;getValue()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
-