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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@Nullable ActionItem
apply
(@NotNull InventoryContext context) Function
<@NotNull InventoryContext, @Nullable ActionItem> Get the buttonFunction
<@NotNull InventoryContext, @Nullable ActionItem> Get the fallback buttonvoid
init()
Initialize the element.void
setButton
(@NotNull Function<@NotNull InventoryContext, @Nullable ActionItem> button) Set the buttonvoid
setClickFuturePredicate
(@NotNull Function<@NotNull ClickEvent, @NotNull CompletableFuture<@NotNull Boolean>> clickFuturePredicate) Set the click future predicatevoid
setClickPredicate
(@NotNull Predicate<@NotNull ClickEvent> clickPredicate) Set the click predicatevoid
setFallbackButton
(@NotNull Function<@NotNull InventoryContext, @Nullable ActionItem> fallbackButton) Set the fallback buttonvoid
setPreventSpamClick
(boolean preventSpamClick) Set whether to prevent spam click when checking click predicatevoid
setViewPredicate
(@NotNull Predicate<@NotNull UUID> viewPredicate) Set the view predicatevoid
stop()
Stop the element.
-
Constructor Details
-
PredicateButton
public PredicateButton()
-
-
Method Details
-
setViewPredicate
Set the view predicate- Parameters:
viewPredicate
- the view predicate
-
setClickPredicate
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
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
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
- Specified by:
apply
in interfaceFunction<@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 interfaceGUIElement
-
stop
public void stop()Description copied from interface:GUIElement
Stop the element. Should be called after removing from the GUI.- Specified by:
stop
in interfaceGUIElement
-