Record Class ClickableButton

java.lang.Object
java.lang.Record
studio.mevera.lotus.api.button.ClickableButton
All Implemented Interfaces:
Button

public record ClickableButton(@NotNull org.bukkit.inventory.ItemStack item, @NotNull ClickAction action, @NotNull DataRegistry data) extends Record implements Button
  • Constructor Summary

    Constructors
    Constructor
    Description
    ClickableButton(@NotNull org.bukkit.inventory.ItemStack item, @NotNull ClickAction action, @NotNull DataRegistry data)
    Creates an instance of a ClickableButton record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull ClickAction
    Returns the value of the action record component.
    @NotNull DataRegistry
    Returns the value of the data record component.
    void
    dispatch(@NotNull MenuView<?,?> view, @NotNull org.bukkit.event.inventory.InventoryClickEvent event)
     
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    @NotNull org.bukkit.inventory.ItemStack
    Returns the value of the item record component.
    final String
    Returns a string representation of this record class.
    withAction(@NotNull ClickAction action)
     
    withItem(@NotNull org.bukkit.inventory.ItemStack item)
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • ClickableButton

      public ClickableButton(@NotNull @NotNull org.bukkit.inventory.ItemStack item, @NotNull @NotNull ClickAction action, @NotNull @NotNull DataRegistry data)
      Creates an instance of a ClickableButton record class.
      Parameters:
      item - the value for the item record component
      action - the value for the action record component
      data - the value for the data record component
  • Method Details

    • withItem

      @NotNull public @NotNull ClickableButton withItem(@NotNull @NotNull org.bukkit.inventory.ItemStack item)
      Specified by:
      withItem in interface Button
    • withAction

      @NotNull public @NotNull ClickableButton withAction(@NotNull @NotNull ClickAction action)
    • dispatch

      public void dispatch(@NotNull @NotNull MenuView<?,?> view, @NotNull @NotNull org.bukkit.event.inventory.InventoryClickEvent event)
      Specified by:
      dispatch in interface Button
    • 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

      @NotNull public @NotNull org.bukkit.inventory.ItemStack item()
      Returns the value of the item record component.
      Specified by:
      item in interface Button
      Returns:
      the value of the item record component
    • action

      @NotNull public @NotNull ClickAction action()
      Returns the value of the action record component.
      Returns:
      the value of the action record component
    • data

      @NotNull public @NotNull DataRegistry data()
      Returns the value of the data record component.
      Specified by:
      data in interface Button
      Returns:
      the value of the data record component