Record Class MobEffectInstance.Details

java.lang.Object
java.lang.Record
net.minecraft.world.effect.MobEffectInstance.Details
Enclosing class:
MobEffectInstance

static record MobEffectInstance.Details(int amplifier, int duration, boolean ambient, boolean showParticles, boolean showIcon, Optional<MobEffectInstance.Details> hiddenEffect, Optional<Set<EffectCure>> cures) extends Record
  • Field Details

    • amplifier

      private final int amplifier
      The field for the amplifier record component.
    • duration

      private final int duration
      The field for the duration record component.
    • ambient

      private final boolean ambient
      The field for the ambient record component.
    • showParticles

      private final boolean showParticles
      The field for the showParticles record component.
    • showIcon

      private final boolean showIcon
      The field for the showIcon record component.
    • hiddenEffect

      private final Optional<MobEffectInstance.Details> hiddenEffect
      The field for the hiddenEffect record component.
    • cures

      private final Optional<Set<EffectCure>> cures
      The field for the cures record component.
    • MAP_CODEC

      public static final com.mojang.serialization.MapCodec<MobEffectInstance.Details> MAP_CODEC
    • STREAM_CODEC

  • Constructor Details

    • Details

      @Deprecated Details(int amplifier, int duration, boolean ambient, boolean showParticles, boolean showIcon, Optional<MobEffectInstance.Details> hiddenEffect)
      Deprecated.
    • Details

      Details(int amplifier, int duration, boolean ambient, boolean showParticles, boolean showIcon, Optional<MobEffectInstance.Details> hiddenEffect, Optional<Set<EffectCure>> cures)
      Creates an instance of a Details record class.
      Parameters:
      amplifier - the value for the amplifier record component
      duration - the value for the duration record component
      ambient - the value for the ambient record component
      showParticles - the value for the showParticles record component
      showIcon - the value for the showIcon record component
      hiddenEffect - the value for the hiddenEffect record component
      cures - the value for the cures record component
  • Method Details

    • create

      private static MobEffectInstance.Details create(int p_323657_, int p_324205_, boolean p_324263_, boolean p_324000_, Optional<Boolean> p_323607_, Optional<MobEffectInstance.Details> p_324604_)
    • create

      private static MobEffectInstance.Details create(int p_323657_, int p_324205_, boolean p_324263_, boolean p_324000_, Optional<Boolean> p_323607_, Optional<MobEffectInstance.Details> p_324604_, Optional<Set<EffectCure>> cures)
    • 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.
    • amplifier

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

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

      public boolean ambient()
      Returns the value of the ambient record component.
      Returns:
      the value of the ambient record component
    • showParticles

      public boolean showParticles()
      Returns the value of the showParticles record component.
      Returns:
      the value of the showParticles record component
    • showIcon

      public boolean showIcon()
      Returns the value of the showIcon record component.
      Returns:
      the value of the showIcon record component
    • hiddenEffect

      public Optional<MobEffectInstance.Details> hiddenEffect()
      Returns the value of the hiddenEffect record component.
      Returns:
      the value of the hiddenEffect record component
    • cures

      public Optional<Set<EffectCure>> cures()
      Returns the value of the cures record component.
      Returns:
      the value of the cures record component