|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use OfflinePlayer | |
---|---|
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 | |
---|---|
static OfflinePlayer |
Bukkit.getOfflinePlayer(String name)
|
OfflinePlayer |
Server.getOfflinePlayer(String name)
Gets the player by the given name, regardless if they are offline or online. |
static OfflinePlayer[] |
Bukkit.getOfflinePlayers()
|
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 | |
---|---|
static Set<OfflinePlayer> |
Bukkit.getBannedPlayers()
|
Set<OfflinePlayer> |
Server.getBannedPlayers()
Gets a set containing all banned players |
static Set<OfflinePlayer> |
Bukkit.getOperators()
|
Set<OfflinePlayer> |
Server.getOperators()
Gets a set containing all player operators |
static Set<OfflinePlayer> |
Bukkit.getWhitelistedPlayers()
|
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 | |
---|---|
OfflinePlayer |
MemorySection.getOfflinePlayer(String path)
|
OfflinePlayer |
ConfigurationSection.getOfflinePlayer(String path)
Gets the requested OfflinePlayer by path. |
OfflinePlayer |
MemorySection.getOfflinePlayer(String path,
OfflinePlayer def)
|
OfflinePlayer |
ConfigurationSection.getOfflinePlayer(String path,
OfflinePlayer def)
Gets the requested OfflinePlayer by path, returning a default value if not found. |
Methods in org.bukkit.configuration with parameters of type OfflinePlayer | |
---|---|
OfflinePlayer |
MemorySection.getOfflinePlayer(String path,
OfflinePlayer def)
|
OfflinePlayer |
ConfigurationSection.getOfflinePlayer(String path,
OfflinePlayer def)
Gets the requested OfflinePlayer by path, returning a default value if not found. |
Uses of OfflinePlayer in org.bukkit.entity |
---|
Subinterfaces of OfflinePlayer in org.bukkit.entity | |
---|---|
interface |
Player
Represents a player, connected or not |
Uses of OfflinePlayer in org.bukkit.scoreboard |
---|
Methods in org.bukkit.scoreboard that return OfflinePlayer | |
---|---|
OfflinePlayer |
Score.getPlayer()
Gets the OfflinePlayer being tracked by this Score |
Methods in org.bukkit.scoreboard that return types with arguments of type OfflinePlayer | |
---|---|
Set<OfflinePlayer> |
Scoreboard.getPlayers()
Gets all players tracked by this Scoreboard |
Set<OfflinePlayer> |
Team.getPlayers()
Gets the Set of players on the team |
Methods in org.bukkit.scoreboard with parameters of type OfflinePlayer | |
---|---|
void |
Team.addPlayer(OfflinePlayer player)
This puts the specified player onto this team for the scoreboard. |
Team |
Scoreboard.getPlayerTeam(OfflinePlayer player)
Gets a player's Team on this Scoreboard |
Score |
Objective.getScore(OfflinePlayer player)
Gets a player's Score for an Objective on this Scoreboard |
Set<Score> |
Scoreboard.getScores(OfflinePlayer player)
Gets all scores for a player on this Scoreboard |
boolean |
Team.hasPlayer(OfflinePlayer player)
Checks to see if the specified player is a member of this team. |
boolean |
Team.removePlayer(OfflinePlayer player)
Removes the player from this team. |
void |
Scoreboard.resetScores(OfflinePlayer player)
Removes all scores for a player on this Scoreboard |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |