Record Class Advancement

java.lang.Object
java.lang.Record
net.minecraft.advancements.Advancement

public record Advancement(Optional<ResourceLocation> parent, Optional<DisplayInfo> display, AdvancementRewards rewards, Map<String,Criterion<?>> criteria, AdvancementRequirements requirements, boolean sendsTelemetryEvent, Optional<Component> name) extends Record
  • Field Details Link icon

    • parent Link icon

      private final Optional<ResourceLocation> parent
      The field for the parent record component.
    • display Link icon

      private final Optional<DisplayInfo> display
      The field for the display record component.
    • rewards Link icon

      private final AdvancementRewards rewards
      The field for the rewards record component.
    • criteria Link icon

      private final Map<String,Criterion<?>> criteria
      The field for the criteria record component.
    • requirements Link icon

      private final AdvancementRequirements requirements
      The field for the requirements record component.
    • sendsTelemetryEvent Link icon

      private final boolean sendsTelemetryEvent
      The field for the sendsTelemetryEvent record component.
    • name Link icon

      private final Optional<Component> name
      The field for the name record component.
    • CRITERIA_CODEC Link icon

      private static final com.mojang.serialization.Codec<Map<String,Criterion<?>>> CRITERIA_CODEC
    • CODEC Link icon

      public static final com.mojang.serialization.Codec<Advancement> CODEC
    • STREAM_CODEC Link icon

      public static final StreamCodec<RegistryFriendlyByteBuf,Advancement> STREAM_CODEC
    • CONDITIONAL_CODEC Link icon

      public static final com.mojang.serialization.Codec<Optional<WithConditions<Advancement>>> CONDITIONAL_CODEC
  • Constructor Details Link icon

  • Method Details Link icon

    • validate Link icon

      private static com.mojang.serialization.DataResult<Advancement> validate(Advancement p_312433_)
    • decorateName Link icon

      private static Component decorateName(DisplayInfo p_301019_)
    • name Link icon

      public static Component name(AdvancementHolder p_300875_)
    • write Link icon

      private void write(RegistryFriendlyByteBuf p_320833_)
    • read Link icon

      private static Advancement read(RegistryFriendlyByteBuf p_320555_)
    • isRoot Link icon

      public boolean isRoot()
    • validate Link icon

      public void validate(ProblemReporter p_311766_, HolderGetter.Provider p_335685_)
    • toString Link icon

      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 Link icon

      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 Link icon

      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.
    • parent Link icon

      public Optional<ResourceLocation> parent()
      Returns the value of the parent record component.
      Returns:
      the value of the parent record component
    • display Link icon

      public Optional<DisplayInfo> display()
      Returns the value of the display record component.
      Returns:
      the value of the display record component
    • rewards Link icon

      public AdvancementRewards rewards()
      Returns the value of the rewards record component.
      Returns:
      the value of the rewards record component
    • criteria Link icon

      public Map<String,Criterion<?>> criteria()
      Returns the value of the criteria record component.
      Returns:
      the value of the criteria record component
    • requirements Link icon

      public AdvancementRequirements requirements()
      Returns the value of the requirements record component.
      Returns:
      the value of the requirements record component
    • sendsTelemetryEvent Link icon

      public boolean sendsTelemetryEvent()
      Returns the value of the sendsTelemetryEvent record component.
      Returns:
      the value of the sendsTelemetryEvent record component
    • name Link icon

      public Optional<Component> name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component