Package net.minecraftforge.common
Class UsernameCache
java.lang.Object
net.minecraftforge.common.UsernameCache
Caches player's last known usernames
Modders should use getLastKnownUsername(UUID)
to determine a players
last known username.
For convenience, getMap()
is provided to get an immutable copy of
the caches underlying map.
-
Nested Class Summary
Modifier and TypeClassDescriptionprivate static class
Used for saving theGson
representation of the cache to disk -
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
containsUUID
(UUID uuid) Check if the cache contains the given player's usernamestatic @Nullable String
getLastKnownUsername
(UUID uuid) Get the player's last known usernamegetMap()
Get an immutable copy of the cache's underlying mapprotected static void
load()
Load the cache from fileprotected static boolean
removeUsername
(UUID uuid) Remove a player's username from the cacheprotected static void
save()
Save the cache to fileprotected static void
setUsername
(UUID uuid, String username) Set a player's current usernamee
-
Field Details
-
map
-
saveFile
-
gson
private static final com.google.gson.Gson gson -
LOGGER
private static final org.apache.logging.log4j.Logger LOGGER -
USRCACHE
private static final org.apache.logging.log4j.Marker USRCACHE
-
-
Constructor Details
-
UsernameCache
private UsernameCache()
-
-
Method Details
-
setUsername
Set a player's current usernamee- Parameters:
uuid
- the player'sUUID
username
- the player's username
-
removeUsername
Remove a player's username from the cache- Parameters:
uuid
- the player'sUUID
- Returns:
- if the cache contained the user
-
getLastKnownUsername
Get the player's last known usernameMay be
null
- Parameters:
uuid
- the player'sUUID
- Returns:
- the player's last known username, or
null
if the cache doesn't have a record of the last username
-
containsUUID
Check if the cache contains the given player's username- Parameters:
uuid
- the player'sUUID
- Returns:
- if the cache contains a username for the given player
-
getMap
Get an immutable copy of the cache's underlying map- Returns:
- the map
-
save
protected static void save()Save the cache to file -
load
protected static void load()Load the cache from file
-