Record Class ProfessionWrapper

java.lang.Object
java.lang.Record
com.mrbysco.justenoughprofessions.jei.ProfessionWrapper
Record Components:
entry - The professionHolder entry for the recipe.
All Implemented Interfaces:
mezz.jei.api.recipe.category.extensions.IRecipeCategoryExtension<ProfessionWrapper>

public record ProfessionWrapper(ProfessionEntry entry) extends Record implements mezz.jei.api.recipe.category.extensions.IRecipeCategoryExtension<ProfessionWrapper>
A wrapper class for the professionHolder recipe.
  • Constructor Summary

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

    Modifier and Type
    Method
    Description
    void
    drawInfo(ProfessionWrapper recipe, int recipeWidth, int recipeHeight, net.minecraft.client.gui.GuiGraphicsExtractor guiGraphics, double mouseX, double mouseY)
    Get the ItemStacks that represent the items in the recipe.
    Returns the value of the entry record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    List<net.minecraft.world.item.ItemStack>
    Get the ItemStacks that represent the blocks in the recipe.
    net.minecraft.network.chat.Component
    Get the professionHolder name for display.
    net.minecraft.resources.Identifier
    Get the professionHolder name for the recipe.
    final int
    Returns a hash code value for this object.
    final String
    Returns a string representation of this record class.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface mezz.jei.api.recipe.category.extensions.IRecipeCategoryExtension

    createRecipeExtras, getTooltip, isHandled
  • Constructor Details

    • ProfessionWrapper

      public ProfessionWrapper(ProfessionEntry entry)
      Creates an instance of a ProfessionWrapper record class.
      Parameters:
      entry - the value for the entry record component
  • Method Details

    • getProfessionName

      public net.minecraft.resources.Identifier getProfessionName()
      Get the professionHolder name for the recipe.
      Returns:
      the professionHolder name for the recipe.
    • getDisplayName

      public net.minecraft.network.chat.Component getDisplayName()
      Get the professionHolder name for display.
      Returns:
      the professionHolder name for display.
    • getBlockStacks

      public List<net.minecraft.world.item.ItemStack> getBlockStacks()
      Get the ItemStacks that represent the blocks in the recipe.
      Returns:
      a list of ItemStacks for the blocks in the recipe.
    • drawInfo

      public void drawInfo(ProfessionWrapper recipe, int recipeWidth, int recipeHeight, net.minecraft.client.gui.GuiGraphicsExtractor guiGraphics, double mouseX, double mouseY)
      Get the ItemStacks that represent the items in the recipe.
      Specified by:
      drawInfo in interface mezz.jei.api.recipe.category.extensions.IRecipeCategoryExtension<ProfessionWrapper>
      Parameters:
      recipe - The recipe to get the items from.
      recipeWidth - The width of the recipe.
      recipeHeight - The height of the recipe.
      guiGraphics - The GuiGraphics instance.
      mouseX - the X position of the mouse, relative to the recipe.
      mouseY - the Y position of the mouse, relative to the recipe.
    • 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.
    • entry

      public ProfessionEntry entry()
      Returns the value of the entry record component.
      Returns:
      the value of the entry record component