Uses of Interface
com.janboerman.invsee.spigot.api.template.Mirror
Package
Description
-
Uses of Mirror in com.janboerman.invsee.spigot
Modifier and TypeMethodDescriptionInvseePlusPlus.getEnderChestMirror()
Get the Mirror used forEnderSpectatorInventory
s.InvseePlusPlus.getEnderChestMirror
(FileConfiguration config) InvseePlusPlus.getInventoryMirror()
Get the Mirror used forMainSpectatorInventory
s.InvseePlusPlus.getInventoryMirror
(FileConfiguration config) -
Uses of Mirror in com.janboerman.invsee.spigot.api
Modifier and TypeFieldDescriptionprotected Mirror
<EnderChestSlot> InvseeAPI.enderchestMirror
protected Mirror
<PlayerInventorySlot> InvseeAPI.inventoryMirror
Modifier and TypeMethodDescriptionCreationOptions.getMirror()
Get the configured mirror.default Mirror
<EnderChestSlot> EnderSpectatorInventory.getMirror()
Get the mirror this inventory is viewed through.default Mirror
<PlayerInventorySlot> MainSpectatorInventory.getMirror()
Get the mirror this inventory is viewed through.SpectatorInventory.getMirror()
get the default Mirror this inventory is viewed throughSpectatorInventoryView.getMirror()
Get the mirror theSpectatorInventory
is viewed through.Modifier and TypeMethodDescriptionInvseeAPI.createOfflineEnderChest
(UUID playerId, String playerName, String title, Mirror<EnderChestSlot> mirror) Deprecated.InvseeAPI.createOfflineInventory
(UUID playerId, String playerName, String title, Mirror<PlayerInventorySlot> mirror) Deprecated.InvseeAPI.enderSpectatorInventory
(String targetName, String title, boolean offlineSupport, Mirror<EnderChestSlot> mirror) Deprecated.InvseeAPI.enderSpectatorInventory
(UUID playerId, String playerName, String title, boolean offlineSupport, Mirror<EnderChestSlot> mirror) Deprecated.InvseeAPI.enderSpectatorInventory
(HumanEntity target, String title, Mirror<EnderChestSlot> mirror) Deprecated.InvseeAPI.mainSpectatorInventory
(String targetName, String title, boolean offlineSupport, Mirror<PlayerInventorySlot> mirror) Deprecated.InvseeAPI.mainSpectatorInventory
(UUID playerId, String playerName, String title, boolean offlineSupport, Mirror<PlayerInventorySlot> mirror) Deprecated.InvseeAPI.mainSpectatorInventory
(HumanEntity target, String title, Mirror<PlayerInventorySlot> mirror) Deprecated.static <Slot> CreationOptions
<Slot> CreationOptions.of
(Title title, boolean offlinePlayerSupport, Mirror<Slot> mirror, boolean unknownPlayerSupport) Deprecated.static <Slot> CreationOptions
<Slot> CreationOptions.of
(Title title, boolean offlinePlayerSupport, Mirror<Slot> mirror, boolean unknownPlayerSupport, boolean bypassExempt) Deprecated.static <Slot> CreationOptions
<Slot> CreationOptions.of
(Plugin plugin, Title title, boolean offlinePlayerSupport, Mirror<Slot> mirror, boolean unknownPlayerSupport, boolean bypassExempt, LogOptions logOptions) Deprecated.static <Slot> CreationOptions
<Slot> CreationOptions.of
(Plugin plugin, Title title, boolean offlinePlayerSupport, Mirror<Slot> mirror, boolean unknownPlayerSupport, boolean bypassExempt, LogOptions logOptions, PlaceholderPalette placeholderPalette) Create new CreationOptions.final void
InvseeAPI.openEnderSpectatorInventory
(Player spectator, EnderSpectatorInventory spectatorInventory, String title, Mirror<EnderChestSlot> mirror) final void
InvseeAPI.openMainSpectatorInventory
(Player spectator, MainSpectatorInventory spectatorInventory, String title, Mirror<PlayerInventorySlot> mirror) final void
InvseeAPI.setEnderInventoryMirror
(Mirror<EnderChestSlot> mirror) Set theMirror
to be used byInvseeAPI.enderInventoryCreationOptions()
.final void
InvseeAPI.setMainInventoryMirror
(Mirror<PlayerInventorySlot> mirror) Set theMirror
to be used byInvseeAPI.mainInventoryCreationOptions()
.final EnderSpectatorInventory
InvseeAPI.spectateEnderChest
(HumanEntity player, String title, Mirror<EnderChestSlot> mirror) Deprecated.final CompletableFuture
<Void> InvseeAPI.spectateEnderChest
(Player spectator, String targetName, String title, boolean offlineSupport, Mirror<EnderChestSlot> mirror) Deprecated.final CompletableFuture
<Void> InvseeAPI.spectateEnderChest
(Player spectator, UUID targetId, String targetName, String title, boolean offlineSupport, Mirror<EnderChestSlot> mirror) final MainSpectatorInventory
InvseeAPI.spectateInventory
(HumanEntity player, String title, Mirror<PlayerInventorySlot> mirror) Deprecated.final CompletableFuture
<Void> InvseeAPI.spectateInventory
(Player spectator, String targetName, String title, boolean offlineSupport, Mirror<PlayerInventorySlot> mirror) Deprecated.final CompletableFuture
<Void> InvseeAPI.spectateInventory
(Player spectator, UUID targetId, String targetName, String title, boolean offlineSupport, Mirror<PlayerInventorySlot> mirror) CreationOptions.withMirror
(Mirror<Slot> mirror) Set the mirror. -
Uses of Mirror in com.janboerman.invsee.spigot.api.template
Modifier and TypeMethodDescriptionstatic Mirror
<EnderChestSlot> Mirror.defaultEnderChest()
The default mirror which assigns each slot to its default index.static Mirror
<PlayerInventorySlot> Mirror.defaultPlayerInventory()
The default mirror which assigns each slot to its default index.static Mirror
<EnderChestSlot> Mirror.forEnderChest
(String template) Convert a template into a Mirror.static Mirror
<PlayerInventorySlot> Mirror.forInventory
(String template) Convert a template into a Mirror.Modifier and TypeMethodDescriptionstatic String
Mirror.toEnderChestTemplate
(Mirror<EnderChestSlot> mirror) Convert a Mirror into a template.static String
Mirror.toInventoryTemplate
(Mirror<PlayerInventorySlot> mirror) Convert a Mirror into a template. -
Uses of Mirror in com.janboerman.invsee.spigot.internal.inventory
Modifier and TypeMethodDescriptiondefault Mirror
<EnderChestSlot> EnderInventory.getMirror()
default Mirror
<PlayerInventorySlot> MainInventory.getMirror()
StandardSpectatorInventory.getMirror()
-
Uses of Mirror in com.janboerman.invsee.spigot.internal.template
Modifier and TypeMethodDescriptionstatic String
EnderChestMirror.toTemplate
(Mirror<EnderChestSlot> mirror) static String
PlayerInventoryMirror.toTemplate
(Mirror<PlayerInventorySlot> mirror)
InvseeAPI.enderSpectatorInventory(UUID, String, CreationOptions)