Record Class SetBlockProperties

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

public record SetBlockProperties(BlockItemStateProperties properties, Vec3i offset, Optional<Holder<GameEvent>> triggerGameEvent) extends Record implements EnchantmentEntityEffect
  • Field Details

    • properties

      private final BlockItemStateProperties properties
      The field for the properties record component.
    • offset

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

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

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

    • SetBlockProperties

      public SetBlockProperties(BlockItemStateProperties p_344788_)
    • SetBlockProperties

      public SetBlockProperties(BlockItemStateProperties properties, Vec3i offset, Optional<Holder<GameEvent>> triggerGameEvent)
      Creates an instance of a SetBlockProperties record class.
      Parameters:
      properties - the value for the properties record component
      offset - the value for the offset record component
      triggerGameEvent - the value for the triggerGameEvent record component
  • Method Details

    • apply

      public void apply(ServerLevel p_342336_, int p_343053_, EnchantedItemInUse p_345372_, Entity p_342035_, Vec3 p_344224_)
      Specified by:
      apply in interface EnchantmentEntityEffect
    • codec

      public com.mojang.serialization.MapCodec<SetBlockProperties> 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.
    • properties

      public BlockItemStateProperties properties()
      Returns the value of the properties record component.
      Returns:
      the value of the properties record component
    • offset

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

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