Record Class ResearchObjective

java.lang.Object
java.lang.Record
com.pixelmonmod.pixelmon.api.research.ResearchObjective

public record ResearchObjective(net.minecraft.network.chat.Component name, DescribableResource sprite, Set<InteractionEvent> events, InteractionCondition condition, List<InteractionResult> result, int requiredAmount) extends Record
  • Field Details

    • CODEC

      public static final com.mojang.serialization.Codec<ResearchObjective> CODEC
  • Constructor Details

    • ResearchObjective

      public ResearchObjective(net.minecraft.network.chat.Component name, DescribableResource sprite, List<InteractionEvent> events, InteractionCondition condition, List<InteractionResult> result, int requiredAmount)
    • ResearchObjective

      public ResearchObjective(net.minecraft.network.chat.Component name, DescribableResource sprite, Set<InteractionEvent> events, InteractionCondition condition, List<InteractionResult> result, int requiredAmount)
      Creates an instance of a ResearchObjective record class.
      Parameters:
      name - the value for the name record component
      sprite - the value for the sprite record component
      events - the value for the events record component
      condition - the value for the condition record component
      result - the value for the result record component
      requiredAmount - the value for the requiredAmount record component
  • Method Details

    • read

      public static ResearchObjective read(net.minecraft.network.FriendlyByteBuf buffer)
    • write

      public void write(net.minecraft.network.FriendlyByteBuf buffer)
    • builder

      public static ResearchObjective.Builder builder()
    • 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 o)
      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:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • name

      public net.minecraft.network.chat.Component name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • sprite

      public DescribableResource sprite()
      Returns the value of the sprite record component.
      Returns:
      the value of the sprite record component
    • events

      public Set<InteractionEvent> events()
      Returns the value of the events record component.
      Returns:
      the value of the events record component
    • condition

      public InteractionCondition condition()
      Returns the value of the condition record component.
      Returns:
      the value of the condition record component
    • result

      public List<InteractionResult> result()
      Returns the value of the result record component.
      Returns:
      the value of the result record component
    • requiredAmount

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