Closed fabiolimace closed 1 year ago
Hide these methods in the package:
They are used only for unit tests.
If someone ever needs the hidden methods, they can do this:
long msb = guid.toUUID().getMostSignificantBits(); long lsb = guid.toUUID().getLeastSignificantBits();
You can think of the GUID as a JDK's UUID wrapper. The toUUID() method unwraps a JDK's UUID so that you can use its interface.
toUUID()
UUID
Released v5.3.1! 🎉
Hide these methods in the package:
They are used only for unit tests.
If someone ever needs the hidden methods, they can do this:
You can think of the GUID as a JDK's UUID wrapper. The
toUUID()
method unwraps a JDK'sUUID
so that you can use its interface.