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 bna$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 Details

    • target

      private final UUID target
      The field for the target record component.
    • type

      private final VillageGossipType type
      The field for the type record component.
    • value

      private final int value
      The field for the value record component.
    • CODEC

      public static final com.mojang.serialization.Codec<VillagerGossips.GossipEntry> CODEC
      Mappings:
      Namespace Name Mixin selector
      official a Lbna$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

      public static final com.mojang.serialization.Codec<List<VillagerGossips.GossipEntry>> LIST_CODEC
      Mappings:
      Namespace Name Mixin selector
      official b Lbna$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 a GossipEntry record class.
      Parameters:
      target - the value for the target record component
      type - the value for the type record component
      value - the value for the value record component
  • Method Details

    • getValue

      public int getValue()
      Mappings:
      Namespace Name Mixin selector
      official a Lbna$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

      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

      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

      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • target

      public UUID target()
      Returns the value of the target record component.
      Returns:
      the value of the target record component
    • type

      public VillageGossipType type()
      Returns the value of the type record component.
      Returns:
      the value of the type record component
    • value

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