Record Class PotionBundleString

java.lang.Object
java.lang.Record
com.github.minecraftschurlimods.potionbundles.PotionBundleString

public record PotionBundleString(net.minecraft.core.Holder<net.minecraft.world.item.Item> item, net.minecraft.core.component.DataComponentPatch components) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.MapCodec<PotionBundleString>
     
    static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf,PotionBundleString>
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    PotionBundleString(net.minecraft.core.Holder<net.minecraft.world.item.Item> item, net.minecraft.core.component.DataComponentPatch components)
    Creates an instance of a PotionBundleString record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    net.minecraft.core.component.DataComponentPatch
    Returns the value of the components record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    fromItem(net.minecraft.world.item.Item item)
     
    fromItem(net.minecraft.world.item.Item item, net.minecraft.core.component.DataComponentPatch components)
     
    fromItemHolder(net.minecraft.core.Holder<net.minecraft.world.item.Item> item)
     
    fromItemStack(net.minecraft.world.item.ItemStack itemStack)
     
    final int
    Returns a hash code value for this object.
    net.minecraft.core.Holder<net.minecraft.world.item.Item>
    Returns the value of the item record component.
    net.minecraft.world.item.ItemStack
     
    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

    • CODEC

      public static final com.mojang.serialization.MapCodec<PotionBundleString> CODEC
    • STREAM_CODEC

      public static final net.minecraft.network.codec.StreamCodec<net.minecraft.network.RegistryFriendlyByteBuf,PotionBundleString> STREAM_CODEC
  • Constructor Details

    • PotionBundleString

      public PotionBundleString(net.minecraft.core.Holder<net.minecraft.world.item.Item> item, net.minecraft.core.component.DataComponentPatch components)
      Creates an instance of a PotionBundleString record class.
      Parameters:
      item - the value for the item record component
      components - the value for the components record component
  • Method Details

    • toItemStack

      public net.minecraft.world.item.ItemStack toItemStack()
    • fromItemHolder

      public static PotionBundleString fromItemHolder(net.minecraft.core.Holder<net.minecraft.world.item.Item> item)
    • fromItem

      public static PotionBundleString fromItem(net.minecraft.world.item.Item item)
    • fromItem

      public static PotionBundleString fromItem(net.minecraft.world.item.Item item, net.minecraft.core.component.DataComponentPatch components)
    • fromItemStack

      public static PotionBundleString fromItemStack(net.minecraft.world.item.ItemStack itemStack)
    • 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.
    • item

      public net.minecraft.core.Holder<net.minecraft.world.item.Item> item()
      Returns the value of the item record component.
      Returns:
      the value of the item record component
    • components

      public net.minecraft.core.component.DataComponentPatch components()
      Returns the value of the components record component.
      Returns:
      the value of the components record component