Record Class SpellTransformation

java.lang.Object
java.lang.Record
com.github.minecraftschurlimods.arsmagicalegacy.api.spell.SpellTransformation

public record SpellTransformation(net.minecraft.world.level.levelgen.structure.templatesystem.RuleTest from, net.minecraft.world.level.block.state.BlockState to, net.minecraft.resources.ResourceLocation spellPart) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.Codec<SpellTransformation>
     
    static final com.mojang.serialization.Codec<net.minecraft.core.HolderSet<SpellTransformation>>
     
    static final com.mojang.serialization.Codec<net.minecraft.core.Holder<SpellTransformation>>
     
    static final net.minecraft.resources.ResourceKey<net.minecraft.core.Registry<SpellTransformation>>
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    SpellTransformation(net.minecraft.world.level.levelgen.structure.templatesystem.RuleTest from, net.minecraft.world.level.block.state.BlockState to, net.minecraft.resources.ResourceLocation spellPart)
    Creates an instance of a SpellTransformation record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    net.minecraft.world.level.levelgen.structure.templatesystem.RuleTest
    Returns the value of the from record component.
    final int
    Returns a hash code value for this object.
    net.minecraft.resources.ResourceLocation
    Returns the value of the spellPart record component.
    net.minecraft.world.level.block.state.BlockState
    to()
    Returns the value of the to record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • REGISTRY_KEY

      public static final net.minecraft.resources.ResourceKey<net.minecraft.core.Registry<SpellTransformation>> REGISTRY_KEY
    • DIRECT_CODEC

      public static final com.mojang.serialization.Codec<SpellTransformation> DIRECT_CODEC
    • REFERENCE_CODEC

      public static final com.mojang.serialization.Codec<net.minecraft.core.Holder<SpellTransformation>> REFERENCE_CODEC
    • LIST_CODEC

      public static final com.mojang.serialization.Codec<net.minecraft.core.HolderSet<SpellTransformation>> LIST_CODEC
  • Constructor Details

    • SpellTransformation

      public SpellTransformation(net.minecraft.world.level.levelgen.structure.templatesystem.RuleTest from, net.minecraft.world.level.block.state.BlockState to, net.minecraft.resources.ResourceLocation spellPart)
      Creates an instance of a SpellTransformation record class.
      Parameters:
      from - the value for the from record component
      to - the value for the to record component
      spellPart - the value for the spellPart record component
  • Method Details

    • 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.
    • from

      public net.minecraft.world.level.levelgen.structure.templatesystem.RuleTest from()
      Returns the value of the from record component.
      Returns:
      the value of the from record component
    • to

      public net.minecraft.world.level.block.state.BlockState to()
      Returns the value of the to record component.
      Returns:
      the value of the to record component
    • spellPart

      public net.minecraft.resources.ResourceLocation spellPart()
      Returns the value of the spellPart record component.
      Returns:
      the value of the spellPart record component