Class PlaceholderMask
java.lang.Object
me.hsgamer.hscore.minecraft.gui.mask.PlaceholderMask
- All Implemented Interfaces:
Function<@NotNull InventoryContext,
,@Nullable Map<Integer, ActionItem>> GUIElement
public class PlaceholderMask
extends Object
implements GUIElement, Function<@NotNull InventoryContext,@Nullable Map<Integer,ActionItem>>
The placeholder mask
Used for per-user masks
Used for per-user masks
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Function
<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> protected final Map
<UUID, Function<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>>> -
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 default mask@Nullable Function
<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> Get the mask for the unique id@NotNull Map
<@NotNull UUID, @NotNull Function<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>>> Get the user-mask mapvoid
init()
Initialize the element.void
setDefaultMask
(@NotNull Function<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> defaultMask) Set the default maskvoid
setMask
(@NotNull UUID uuid, @Nullable Function<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> mask) Set the mask for the unique idvoid
stop()
Stop the element.
-
Field Details
-
userMasks
protected final Map<UUID,Function<@NotNull InventoryContext, userMasks@Nullable Map<Integer, ActionItem>>> -
defaultMask
-
-
Constructor Details
-
PlaceholderMask
public PlaceholderMask()
-
-
Method Details
-
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>>
-
setMask
public void setMask(@NotNull @NotNull UUID uuid, @Nullable @Nullable Function<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> mask) Set the mask for the unique id- Parameters:
uuid
- the unique idmask
- the mask
-
getMask
@Nullable public @Nullable Function<@NotNull InventoryContext,@Nullable Map<Integer, getMaskActionItem>> (@NotNull @NotNull UUID uuid) Get the mask for the unique id- Parameters:
uuid
- the unique id- Returns:
- the mask
-
getDefaultMask
@NotNull public @NotNull Function<@NotNull InventoryContext,@Nullable Map<Integer, getDefaultMask()ActionItem>> Get the default mask- Returns:
- the default mask
-
setDefaultMask
public void setDefaultMask(@NotNull @NotNull Function<@NotNull InventoryContext, @Nullable Map<Integer, ActionItem>> defaultMask) Set the default mask- Parameters:
defaultMask
- the default mask
-
getUserMasks
@NotNull public @NotNull Map<@NotNull UUID,@NotNull Function<@NotNull InventoryContext, getUserMasks()@Nullable Map<Integer, ActionItem>>> Get the user-mask map- Returns:
- the user-mask map
-