Record Class CrystalPhylacteryContentsSize

java.lang.Object
java.lang.Record
at.minecraftschurli.mods.arsmagicalegacy.api.spell.CrystalPhylacteryContentsSize
Record Components:
size - The size, i.e. the amount of kills needed, of the EntityType in a crystal phylactery.

public record CrystalPhylacteryContentsSize(int size) extends Record
Represents a size override for an EntityType when stored in a crystal phylactery. If an EntityType is not in the DATA_MAP, its max HP is used. If the size is 0, the crystal phylactery will not support the EntityType at all.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.Codec<CrystalPhylacteryContentsSize>
     
    static final net.neoforged.neoforge.registries.datamaps.DataMapType<net.minecraft.world.entity.EntityType<?>, CrystalPhylacteryContentsSize>
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates an instance of a CrystalPhylacteryContentsSize record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    static int
    get(net.minecraft.world.entity.EntityType<?> type)
     
    static boolean
    has(net.minecraft.world.entity.EntityType<?> type)
     
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the size record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class Object

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

  • Constructor Details

    • CrystalPhylacteryContentsSize

      public CrystalPhylacteryContentsSize(int size)
      Creates an instance of a CrystalPhylacteryContentsSize record class.
      Parameters:
      size - the value for the size record component
  • Method Details

    • get

      public static int get(net.minecraft.world.entity.EntityType<?> type)
      Parameters:
      type - The EntityType to query.
      Returns:
      The size of the EntityType in a crystal phylactery.
    • has

      public static boolean has(net.minecraft.world.entity.EntityType<?> type)
      Parameters:
      type - The EntityType to query.
      Returns:
      Whether a size override for the given EntityType exists.
    • 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 the compare method from their corresponding wrapper classes.
      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.
    • size

      public int size()
      Returns the value of the size record component.
      Returns:
      the value of the size record component