Package de.xima.fc.utils
Class XUuidUtils
- java.lang.Object
-
- de.xima.fc.utils.XUuidUtils
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
isUuidString(String value)
Checks if the given string is a valid UUID.static UUID
parseUuidOrNull(String value)
Parses the string as aUUID
, if possible, or returns null if it cannot be parsed.
-
-
-
Method Detail
-
isUuidString
public static boolean isUuidString(String value)
Checks if the given string is a valid UUID.- Parameters:
value
- The string to check.- Returns:
true
if the string is a valid UUID,false
otherwise.
-
-