Record Class BuiltItem

java.lang.Object
java.lang.Record
dev.aurelium.slate.builder.BuiltItem

public record BuiltItem(Map<String,ItemReplacer> replacers, ItemReplacer anyReplacer, Map<ClickAction,ItemClicker> clickers, @NotNull ItemModifier modifier, MenuListener initListener) extends Record
  • Constructor Details

    • BuiltItem

      public BuiltItem(Map<String,ItemReplacer> replacers, ItemReplacer anyReplacer, Map<ClickAction,ItemClicker> clickers, @NotNull @NotNull ItemModifier modifier, MenuListener initListener)
      Creates an instance of a BuiltItem record class.
      Parameters:
      replacers - the value for the replacers record component
      anyReplacer - the value for the anyReplacer record component
      clickers - the value for the clickers record component
      modifier - the value for the modifier record component
      initListener - the value for the initListener record component
  • Method Details

    • createEmpty

      public static BuiltItem createEmpty()
    • applyReplacers

      public String applyReplacers(String input, Slate slate, org.bukkit.entity.Player player, ActiveMenu activeMenu, PlaceholderType type)
    • handleClick

      public void handleClick(Set<ClickAction> actions, ItemClick itemClick)
    • 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.
    • replacers

      public Map<String,ItemReplacer> replacers()
      Returns the value of the replacers record component.
      Returns:
      the value of the replacers record component
    • anyReplacer

      public ItemReplacer anyReplacer()
      Returns the value of the anyReplacer record component.
      Returns:
      the value of the anyReplacer record component
    • clickers

      public Map<ClickAction,ItemClicker> clickers()
      Returns the value of the clickers record component.
      Returns:
      the value of the clickers record component
    • modifier

      @NotNull public @NotNull ItemModifier modifier()
      Returns the value of the modifier record component.
      Returns:
      the value of the modifier record component
    • initListener

      public MenuListener initListener()
      Returns the value of the initListener record component.
      Returns:
      the value of the initListener record component