Package com.velocitypowered.api.util
Class UuidUtils
java.lang.Object
com.velocitypowered.api.util.UuidUtils
Provides a small, useful selection of utilities for working with Minecraft UUIDs.
-
Method Summary
Modifier and TypeMethodDescriptionstatic UUIDfromUndashed(String string) Converts from an undashed Mojang-style UUID into a JavaUUIDobject.static UUIDgenerateOfflinePlayerUuid(String username) Generates a UUID for use for offline mode.static StringtoUndashed(UUID uuid) Converts from a JavaUUIDobject into an undashed Mojang-style UUID.
-
Method Details
-
fromUndashed
Converts from an undashed Mojang-style UUID into a JavaUUIDobject.- Parameters:
string- the string to convert- Returns:
- the UUID object
-
toUndashed
Converts from a JavaUUIDobject into an undashed Mojang-style UUID.- Parameters:
uuid- the UUID to convert- Returns:
- the undashed UUID
-
generateOfflinePlayerUuid
Generates a UUID for use for offline mode.- Parameters:
username- the username to use- Returns:
- the offline mode UUID
-