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

    • amplifier Link icon

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

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

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

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

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

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

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

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

  • Constructor Details Link icon

    • Details Link icon

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

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

    • create Link icon

      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)
    • create Link icon

      @Deprecated 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_)
      Deprecated.
    • 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.
    • amplifier Link icon

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

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

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

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

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

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

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