Class PredicateMask
java.lang.Object
me.hsgamer.hscore.minecraft.gui.mask.PredicateMask
- All Implemented Interfaces:
Function<@NotNull InventoryContext,
,@Nullable Map<Integer, ActionItem>> GUIElement
public class PredicateMask
extends Object
implements GUIElement, Function<@NotNull InventoryContext,@Nullable Map<Integer,ActionItem>>
The mask with predicate
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@Nullable Map
<Integer, ActionItem> apply
(@NotNull InventoryContext context) @NotNull Function
<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> Get the fallback mask@NotNull Function
<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> getMask()
Get the maskvoid
init()
Initialize the element.void
setFallbackMask
(@NotNull Function<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> fallbackMask) Set the fallback maskvoid
setMask
(@NotNull Function<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> mask) Set the maskvoid
setViewPredicate
(@NotNull Predicate<@NotNull UUID> viewPredicate) Set the view predicatevoid
stop()
Stop the element.
-
Constructor Details
-
PredicateMask
public PredicateMask()
-
-
Method Details
-
setViewPredicate
Set the view predicate- Parameters:
viewPredicate
- the view predicate
-
getMask
@NotNull public @NotNull Function<@NotNull InventoryContext,@Nullable Map<Integer, getMask()ActionItem>> Get the mask- Returns:
- the mask
-
setMask
public void setMask(@NotNull @NotNull Function<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> mask) Set the mask- Parameters:
mask
- the mask
-
getFallbackMask
@NotNull public @NotNull Function<@NotNull InventoryContext,@Nullable Map<Integer, getFallbackMask()ActionItem>> Get the fallback mask- Returns:
- the fallback mask
-
setFallbackMask
public void setFallbackMask(@NotNull @NotNull Function<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> fallbackMask) Set the fallback mask- Parameters:
fallbackMask
- the fallback mask
-
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
-
apply
@Nullable public @Nullable Map<Integer,ActionItem> apply(@NotNull @NotNull InventoryContext context) - Specified by:
apply
in interfaceFunction<@NotNull InventoryContext,
@Nullable Map<Integer, ActionItem>>
-