*
* @param uuid UUID to check
* @return The name associated with an UUID
*/
public static String getName(UUID uuid) {
NameFetcher fetcher = new NameFetcher(uuid);
try {
Map<UUID, String> uuidMap = fetcher.call();
return uuidMap.get(uuid);
} catch (Exception e) {
return null;
}