Record Class AdvancementCriterion<T extends CriterionConditions>

java.lang.Object
java.lang.Record
net.minecraft.advancement.AdvancementCriterion<T>
Record Components:
trigger -
conditions -

public record AdvancementCriterion<T extends CriterionConditions>(Criterion<T extends CriterionConditions> trigger, T extends CriterionConditions conditions) extends Record
Mappings:
Namespace Name
named net/minecraft/advancement/AdvancementCriterion
intermediary net/minecraft/class_175
official an
named trigger
intermediary comp_1923
official b
named conditions
intermediary comp_1924
official c
  • Field Details

    • trigger

      private final Criterion<T extends CriterionConditions> trigger
      The field for the trigger record component.
    • conditions

      private final T extends CriterionConditions conditions
      The field for the conditions record component.
    • MAP_CODEC

      private static final com.mojang.serialization.MapCodec<AdvancementCriterion<?>> MAP_CODEC
      Mappings:
      Namespace Name Mixin selector
      named MAP_CODEC Lnet/minecraft/advancement/AdvancementCriterion;MAP_CODEC:Lcom/mojang/serialization/MapCodec;
      intermediary field_47189 Lnet/minecraft/class_175;field_47189:Lcom/mojang/serialization/MapCodec;
      official d Lan;d:Lcom/mojang/serialization/MapCodec;
    • CODEC

      public static final com.mojang.serialization.Codec<AdvancementCriterion<?>> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/advancement/AdvancementCriterion;CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_47188 Lnet/minecraft/class_175;field_47188:Lcom/mojang/serialization/Codec;
      official a Lan;a:Lcom/mojang/serialization/Codec;
  • Constructor Details

    • AdvancementCriterion

      public AdvancementCriterion(Criterion<T> criterion, T t)
  • Method Details

    • getCodec

      private static <T extends CriterionConditions> com.mojang.serialization.Codec<AdvancementCriterion<T>> getCodec(Criterion<T> criterion)
      Mappings:
      Namespace Name Mixin selector
      named getCodec Lnet/minecraft/advancement/AdvancementCriterion;getCodec(Lnet/minecraft/advancement/criterion/Criterion;)Lcom/mojang/serialization/Codec;
      intermediary method_54935 Lnet/minecraft/class_175;method_54935(Lnet/minecraft/class_179;)Lcom/mojang/serialization/Codec;
      official a Lan;a(Lap;)Lcom/mojang/serialization/Codec;
    • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • trigger

      public Criterion<T> trigger()
      Returns the value of the trigger record component.
      Returns:
      the value of the trigger record component
    • conditions

      public T conditions()
      Returns the value of the conditions record component.
      Returns:
      the value of the conditions record component