Uses of Interface
com.janboerman.invsee.spigot.api.response.SpectateResponse
Package
Description
-
Uses of SpectateResponse in com.janboerman.invsee.spigot.api
Modifier and TypeMethodDescriptionInvseeAPI.enderSpectatorInventory
(HumanEntity target) Create anEnderSpectatorInventory
which will provide access to the ender chest contents of a target player.InvseeAPI.enderSpectatorInventory
(HumanEntity target, CreationOptions<EnderChestSlot> options) Create anEnderSpectatorInventory
which will provide access to the ender chest contents of a target player.InvseeAPI.enderSpectatorInventory
(HumanEntity target, String title) Deprecated.InvseeAPI.enderSpectatorInventory
(HumanEntity target, String title, Mirror<EnderChestSlot> mirror) Deprecated.InvseeAPI.mainSpectatorInventory
(HumanEntity target) Create aMainSpectatorInventory
which will provide access to the inventory contents of a target player.InvseeAPI.mainSpectatorInventory
(HumanEntity target, CreationOptions<PlayerInventorySlot> options) Create aMainSpectatorInventory
which will provide access to the inventory contents of a target player.InvseeAPI.mainSpectatorInventory
(HumanEntity target, String title) Deprecated.InvseeAPI.mainSpectatorInventory
(HumanEntity target, String title, Mirror<PlayerInventorySlot> mirror) Deprecated.Modifier and TypeMethodDescriptionInvseeAPI.enderSpectatorInventory
(String targetName) Create anEnderSpectatorInventory
which will provide access to the ender chest contents of a target player.InvseeAPI.enderSpectatorInventory
(String targetName, CreationOptions<EnderChestSlot> options) Create anEnderSpectatorInventory
which will provide access to the ender chest contents of a target player.InvseeAPI.enderSpectatorInventory
(String targetName, String title) Deprecated.InvseeAPI.enderSpectatorInventory
(String targetName, String title, boolean offlineSupport) Deprecated.InvseeAPI.enderSpectatorInventory
(String targetName, String title, boolean offlineSupport, Mirror<EnderChestSlot> mirror) Deprecated.InvseeAPI.enderSpectatorInventory
(UUID playerId, String playerName) Create anEnderSpectatorInventory
which will provide access to the ender chest contents of a target player.InvseeAPI.enderSpectatorInventory
(UUID playerId, String playerName, CreationOptions<EnderChestSlot> options) Create anEnderSpectatorInventory
which will provide access to the ender chest contents of a target player.InvseeAPI.enderSpectatorInventory
(UUID playerId, String playerName, String title) Deprecated.InvseeAPI.enderSpectatorInventory
(UUID playerId, String playerName, String title, boolean offlineSupport) Deprecated.InvseeAPI.enderSpectatorInventory
(UUID playerId, String playerName, String title, boolean offlineSupport, Mirror<EnderChestSlot> mirror) Deprecated.InvseeAPI.mainSpectatorInventory
(String targetName) Create aMainSpectatorInventory
which will provide access to the inventory contents of a target player.InvseeAPI.mainSpectatorInventory
(String targetName, CreationOptions<PlayerInventorySlot> options) Create aMainSpectatorInventory
which will provide access to the inventory contents of a target player.InvseeAPI.mainSpectatorInventory
(String targetName, String title) Deprecated.InvseeAPI.mainSpectatorInventory
(String targetName, String title, boolean offlineSupport) Deprecated.InvseeAPI.mainSpectatorInventory
(String targetName, String title, boolean offlineSupport, Mirror<PlayerInventorySlot> mirror) Deprecated.InvseeAPI.mainSpectatorInventory
(UUID playerId, String playerName) Create aMainSpectatorInventory
which will provide access to the inventory contents of a target player.InvseeAPI.mainSpectatorInventory
(UUID playerId, String playerName, CreationOptions<PlayerInventorySlot> options) Create aMainSpectatorInventory
which will provide access to the inventory contents of a target player.InvseeAPI.mainSpectatorInventory
(UUID playerId, String playerName, String title) Deprecated.InvseeAPI.mainSpectatorInventory
(UUID playerId, String playerName, String title, boolean offlineSupport) Deprecated.InvseeAPI.mainSpectatorInventory
(UUID playerId, String playerName, String title, boolean offlineSupport, Mirror<PlayerInventorySlot> mirror) Deprecated. -
Uses of SpectateResponse in com.janboerman.invsee.spigot.api.response
Modifier and TypeMethodDescriptionstatic <SI extends SpectatorInventory<?>>
SpectateResponse<SI> SpectateResponse.fail
(NotCreatedReason reason) Create a failed SpectateResponse.static <SI extends SpectatorInventory<?>>
SpectateResponse<SI> SpectateResponse.fromOptional
(Optional<SI> optional) Convert anOptional
into a SpectateResponse.static <SI extends SpectatorInventory<?>>
SpectateResponse<SI> SpectateResponse.fromOptional
(Optional<SI> optional, NotCreatedReason ifEmpty) Convert anOptional
into a SpectateResponse.static <SI extends SpectatorInventory<?>>
SpectateResponse<SI> SpectateResponse.succeed
(SI spectatorInventory) Create a succeeded SpectateResponse.Modifier and TypeMethodDescriptionstatic <SI extends SpectatorInventory<?>>
Optional<SI> SpectateResponse.toOptional
(SpectateResponse<SI> response) Convert a SpectateResponse into anOptional
. -
Uses of SpectateResponse in com.janboerman.invsee.spigot.internal
Modifier and TypeMethodDescriptionInvseePlatform.createOfflineEnderChest
(UUID playerId, String playerName, CreationOptions<EnderChestSlot> options) InvseePlatform.createOfflineInventory
(UUID playerId, String playerName, CreationOptions<PlayerInventorySlot> options)
InvseeAPI.enderSpectatorInventory(HumanEntity, CreationOptions)