Uses of Interface
org.bukkit.OfflinePlayer
-
Packages that use OfflinePlayer Package Description org.bukkit The root package of the Bukkit API, contains generalized API classes.org.bukkit.block Classes used to manipulate the voxels in aworld, including special states.org.bukkit.configuration Classes dedicated to handling a plugin's runtime configuration.org.bukkit.entity Interfaces for non-voxel objects that can exist in aworld, including all players, monsters, projectiles, etc.org.bukkit.inventory.meta The interfaces used when manipulating extra data can can be stored insideitem stacks.org.bukkit.scoreboard Interfaces used to manage the client side score display system. -
-
Uses of OfflinePlayer in org.bukkit
Methods in org.bukkit that return OfflinePlayer Modifier and Type Method Description static @NotNull OfflinePlayerBukkit. getOfflinePlayer(@NotNull String name)Deprecated.Persistent storage of users should be by UUID as names are no longer unique past a single session.static @NotNull OfflinePlayerBukkit. getOfflinePlayer(@NotNull UUID id)Gets the player by the given UUID, regardless if they are offline or online.@NotNull OfflinePlayerServer. getOfflinePlayer(@NotNull String name)Deprecated.Persistent storage of users should be by UUID as names are no longer unique past a single session.@NotNull OfflinePlayerServer. getOfflinePlayer(@NotNull UUID id)Gets the player by the given UUID, regardless if they are offline or online.static @NotNull OfflinePlayer[]Bukkit. getOfflinePlayers()Gets every player that has ever played on this server.@NotNull OfflinePlayer[]Server. getOfflinePlayers()Gets every player that has ever played on this server.Methods in org.bukkit that return types with arguments of type OfflinePlayer Modifier and Type Method Description static @NotNull Set<OfflinePlayer>Bukkit. getBannedPlayers()Gets a set containing all banned players.@NotNull Set<OfflinePlayer>Server. getBannedPlayers()Gets a set containing all banned players.static @NotNull Set<OfflinePlayer>Bukkit. getOperators()Gets a set containing all player operators.@NotNull Set<OfflinePlayer>Server. getOperators()Gets a set containing all player operators.static @NotNull Set<OfflinePlayer>Bukkit. getWhitelistedPlayers()Gets a list of whitelisted players.@NotNull Set<OfflinePlayer>Server. getWhitelistedPlayers()Gets a list of whitelisted players. -
Uses of OfflinePlayer in org.bukkit.block
Methods in org.bukkit.block that return OfflinePlayer Modifier and Type Method Description @Nullable OfflinePlayerSkull. getOwningPlayer()Get the player which owns the skull.Methods in org.bukkit.block with parameters of type OfflinePlayer Modifier and Type Method Description voidSkull. setOwningPlayer(@NotNull OfflinePlayer player)Set the player which owns the skull. -
Uses of OfflinePlayer in org.bukkit.configuration
Methods in org.bukkit.configuration that return OfflinePlayer Modifier and Type Method Description @Nullable OfflinePlayerConfigurationSection. getOfflinePlayer(@NotNull String path)Gets the requested OfflinePlayer by path.@Nullable OfflinePlayerConfigurationSection. getOfflinePlayer(@NotNull String path, @Nullable OfflinePlayer def)Gets the requestedOfflinePlayerby path, returning a default value if not found.@Nullable OfflinePlayerMemorySection. getOfflinePlayer(@NotNull String path)@Nullable OfflinePlayerMemorySection. getOfflinePlayer(@NotNull String path, @Nullable OfflinePlayer def)Methods in org.bukkit.configuration with parameters of type OfflinePlayer Modifier and Type Method Description @Nullable OfflinePlayerConfigurationSection. getOfflinePlayer(@NotNull String path, @Nullable OfflinePlayer def)Gets the requestedOfflinePlayerby path, returning a default value if not found.@Nullable OfflinePlayerMemorySection. getOfflinePlayer(@NotNull String path, @Nullable OfflinePlayer def) -
Uses of OfflinePlayer in org.bukkit.entity
Subinterfaces of OfflinePlayer in org.bukkit.entity Modifier and Type Interface Description interfacePlayerRepresents a player, connected or notMethods in org.bukkit.entity that return OfflinePlayer Modifier and Type Method Description @Nullable OfflinePlayerZombieVillager. getConversionPlayer()Gets the player who initiated the conversion.Methods in org.bukkit.entity with parameters of type OfflinePlayer Modifier and Type Method Description voidZombieVillager. setConversionPlayer(@Nullable OfflinePlayer conversionPlayer)Sets the player who initiated the conversion. -
Uses of OfflinePlayer in org.bukkit.inventory.meta
Methods in org.bukkit.inventory.meta that return OfflinePlayer Modifier and Type Method Description @Nullable OfflinePlayerSkullMeta. getOwningPlayer()Gets the owner of the skull.Methods in org.bukkit.inventory.meta with parameters of type OfflinePlayer Modifier and Type Method Description booleanSkullMeta. setOwningPlayer(@Nullable OfflinePlayer owner)Sets the owner of the skull. -
Uses of OfflinePlayer in org.bukkit.scoreboard
Methods in org.bukkit.scoreboard that return OfflinePlayer Modifier and Type Method Description @NotNull OfflinePlayerScore. getPlayer()Deprecated.Scoreboards can contain entries that aren't playersMethods in org.bukkit.scoreboard that return types with arguments of type OfflinePlayer Modifier and Type Method Description @NotNull Set<OfflinePlayer>Scoreboard. getPlayers()Deprecated.Scoreboards can contain entries that aren't players@NotNull Set<OfflinePlayer>Team. getPlayers()Deprecated.Teams can contain entries that aren't playersMethods in org.bukkit.scoreboard with parameters of type OfflinePlayer Modifier and Type Method Description voidTeam. addPlayer(@NotNull OfflinePlayer player)Deprecated.Teams can contain entries that aren't players@Nullable TeamScoreboard. getPlayerTeam(@NotNull OfflinePlayer player)Deprecated.Scoreboards can contain entries that aren't players@NotNull ScoreObjective. getScore(@NotNull OfflinePlayer player)Deprecated.Scoreboards can contain entries that aren't players@NotNull Set<Score>Scoreboard. getScores(@NotNull OfflinePlayer player)Deprecated.Scoreboards can contain entries that aren't playersbooleanTeam. hasPlayer(@NotNull OfflinePlayer player)Deprecated.Teams can contain entries that aren't playersbooleanTeam. removePlayer(@NotNull OfflinePlayer player)Deprecated.Teams can contain entries that aren't playersvoidScoreboard. resetScores(@NotNull OfflinePlayer player)Deprecated.Scoreboards can contain entries that aren't players
-