Uses of Interface
org.bukkit.OfflinePlayer
| Package | Description |
|---|---|
| org.bukkit |
More generalized classes in the API.
|
| org.bukkit.configuration |
Classes dedicated to handling a plugin's runtime configuration.
|
| org.bukkit.entity |
Interfaces for non-voxel objects that can exist in a
world, including all players, monsters, projectiles, etc. |
| 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 OfflinePlayerBukkit. getOfflinePlayer(java.lang.String name)Deprecated.Persistent storage of users should be by UUID as names are no longer unique past a single session.static OfflinePlayerBukkit. getOfflinePlayer(java.util.UUID id)Gets the player by the given UUID, regardless if they are offline or online.OfflinePlayerServer. getOfflinePlayer(java.lang.String name)Deprecated.Persistent storage of users should be by UUID as names are no longer unique past a single session.OfflinePlayerServer. getOfflinePlayer(java.util.UUID id)Gets the player by the given UUID, regardless if they are offline or online.static OfflinePlayer[]Bukkit. getOfflinePlayers()Gets every player that has ever played on this server.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 java.util.Set<OfflinePlayer>Bukkit. getBannedPlayers()Gets a set containing all banned players.java.util.Set<OfflinePlayer>Server. getBannedPlayers()Gets a set containing all banned players.static java.util.Set<OfflinePlayer>Bukkit. getOperators()Gets a set containing all player operators.java.util.Set<OfflinePlayer>Server. getOperators()Gets a set containing all player operators.static java.util.Set<OfflinePlayer>Bukkit. getWhitelistedPlayers()Gets a list of whitelisted players.java.util.Set<OfflinePlayer>Server. getWhitelistedPlayers()Gets a list of whitelisted players. -
Uses of OfflinePlayer in org.bukkit.configuration
Methods in org.bukkit.configuration that return OfflinePlayer Modifier and Type Method Description OfflinePlayerConfigurationSection. getOfflinePlayer(java.lang.String path)Gets the requested OfflinePlayer by path.OfflinePlayerConfigurationSection. getOfflinePlayer(java.lang.String path, OfflinePlayer def)Gets the requestedOfflinePlayerby path, returning a default value if not found.OfflinePlayerMemorySection. getOfflinePlayer(java.lang.String path)OfflinePlayerMemorySection. getOfflinePlayer(java.lang.String path, OfflinePlayer def)Methods in org.bukkit.configuration with parameters of type OfflinePlayer Modifier and Type Method Description OfflinePlayerConfigurationSection. getOfflinePlayer(java.lang.String path, OfflinePlayer def)Gets the requestedOfflinePlayerby path, returning a default value if not found.OfflinePlayerMemorySection. getOfflinePlayer(java.lang.String path, 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 not -
Uses of OfflinePlayer in org.bukkit.scoreboard
Methods in org.bukkit.scoreboard that return OfflinePlayer Modifier and Type Method Description 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 java.util.Set<OfflinePlayer>Scoreboard. getPlayers()Deprecated.Scoreboards can contain entries that aren't playersjava.util.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(OfflinePlayer player)Deprecated.Teams can contain entries that aren't playersTeamScoreboard. getPlayerTeam(OfflinePlayer player)Deprecated.Scoreboards can contain entries that aren't playersScoreObjective. getScore(OfflinePlayer player)Deprecated.Scoreboards can contain entries that aren't playersjava.util.Set<Score>Scoreboard. getScores(OfflinePlayer player)Deprecated.Scoreboards can contain entries that aren't playersbooleanTeam. hasPlayer(OfflinePlayer player)Deprecated.Teams can contain entries that aren't playersbooleanTeam. removePlayer(OfflinePlayer player)Deprecated.Teams can contain entries that aren't playersvoidScoreboard. resetScores(OfflinePlayer player)Deprecated.Scoreboards can contain entries that aren't players