Record Class ReplaceDisk

java.lang.Object
java.lang.Record
net.minecraft.world.item.enchantment.effects.ReplaceDisk
All Implemented Interfaces:
EnchantmentEntityEffect, EnchantmentLocationBasedEffect

public record ReplaceDisk(LevelBasedValue radius, LevelBasedValue height, Vec3i offset, Optional<BlockPredicate> predicate, BlockStateProvider blockState, Optional<Holder<GameEvent>> triggerGameEvent) extends Record implements EnchantmentEntityEffect
  • Field Details

    • radius

      private final LevelBasedValue radius
      The field for the radius record component.
    • height

      private final LevelBasedValue height
      The field for the height record component.
    • offset

      private final Vec3i offset
      The field for the offset record component.
    • predicate

      private final Optional<BlockPredicate> predicate
      The field for the predicate record component.
    • blockState

      private final BlockStateProvider blockState
      The field for the blockState record component.
    • triggerGameEvent

      private final Optional<Holder<GameEvent>> triggerGameEvent
      The field for the triggerGameEvent record component.
    • CODEC

      public static final com.mojang.serialization.MapCodec<ReplaceDisk> CODEC
  • Constructor Details

    • ReplaceDisk

      public ReplaceDisk(LevelBasedValue radius, LevelBasedValue height, Vec3i offset, Optional<BlockPredicate> predicate, BlockStateProvider blockState, Optional<Holder<GameEvent>> triggerGameEvent)
      Creates an instance of a ReplaceDisk record class.
      Parameters:
      radius - the value for the radius record component
      height - the value for the height record component
      offset - the value for the offset record component
      predicate - the value for the predicate record component
      blockState - the value for the blockState record component
      triggerGameEvent - the value for the triggerGameEvent record component
  • Method Details

    • apply

      public void apply(ServerLevel p_353045_, int p_353076_, EnchantedItemInUse p_353050_, Entity p_353038_, Vec3 p_353044_)
      Specified by:
      apply in interface EnchantmentEntityEffect
    • codec

      public com.mojang.serialization.MapCodec<ReplaceDisk> codec()
      Specified by:
      codec in interface EnchantmentEntityEffect
      Specified by:
      codec in interface EnchantmentLocationBasedEffect
    • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • radius

      public LevelBasedValue radius()
      Returns the value of the radius record component.
      Returns:
      the value of the radius record component
    • height

      public LevelBasedValue height()
      Returns the value of the height record component.
      Returns:
      the value of the height record component
    • offset

      public Vec3i offset()
      Returns the value of the offset record component.
      Returns:
      the value of the offset record component
    • predicate

      public Optional<BlockPredicate> predicate()
      Returns the value of the predicate record component.
      Returns:
      the value of the predicate record component
    • blockState

      public BlockStateProvider blockState()
      Returns the value of the blockState record component.
      Returns:
      the value of the blockState record component
    • triggerGameEvent

      public Optional<Holder<GameEvent>> triggerGameEvent()
      Returns the value of the triggerGameEvent record component.
      Returns:
      the value of the triggerGameEvent record component