Class PredicateButton

java.lang.Object
me.hsgamer.hscore.minecraft.gui.button.PredicateButton
All Implemented Interfaces:
Function<@NotNull InventoryContext,@Nullable ActionItem>, GUIElement

public class PredicateButton extends Object implements GUIElement, Function<@NotNull InventoryContext,@Nullable ActionItem>
The button with predicates
  • Constructor Details

    • PredicateButton

      public PredicateButton()
  • Method Details

    • setViewPredicate

      public void setViewPredicate(@NotNull @NotNull Predicate<@NotNull UUID> viewPredicate)
      Set the view predicate
      Parameters:
      viewPredicate - the view predicate
    • setClickPredicate

      public void setClickPredicate(@NotNull @NotNull Predicate<@NotNull ClickEvent> clickPredicate)
      Set the click predicate
      Parameters:
      clickPredicate - the click predicate
    • setClickFuturePredicate

      public void setClickFuturePredicate(@NotNull @NotNull Function<@NotNull ClickEvent,@NotNull CompletableFuture<@NotNull Boolean>> clickFuturePredicate)
      Set the click future predicate
      Parameters:
      clickFuturePredicate - the click future predicate
    • setPreventSpamClick

      public void setPreventSpamClick(boolean preventSpamClick)
      Set whether to prevent spam click when checking click predicate
      Parameters:
      preventSpamClick - true if it should
    • getButton

      public Function<@NotNull InventoryContext,@Nullable ActionItem> getButton()
      Get the button
      Returns:
      the button
    • setButton

      public void setButton(@NotNull @NotNull Function<@NotNull InventoryContext,@Nullable ActionItem> button)
      Set the button
      Parameters:
      button - the button
    • getFallbackButton

      public Function<@NotNull InventoryContext,@Nullable ActionItem> getFallbackButton()
      Get the fallback button
      Returns:
      the fallback button
    • setFallbackButton

      public void setFallbackButton(@NotNull @NotNull Function<@NotNull InventoryContext,@Nullable ActionItem> fallbackButton)
      Set the fallback button
      Parameters:
      fallbackButton - the fallback button
    • apply

      @Nullable public @Nullable ActionItem apply(@NotNull @NotNull InventoryContext context)
      Specified by:
      apply in interface Function<@NotNull InventoryContext,@Nullable ActionItem>
    • init

      public void init()
      Description copied from interface: GUIElement
      Initialize the element. Should be called before adding to the GUI.
      Specified by:
      init in interface GUIElement
    • stop

      public void stop()
      Description copied from interface: GUIElement
      Stop the element. Should be called after removing from the GUI.
      Specified by:
      stop in interface GUIElement