java-uuid-generator
java-uuid-generator copied to clipboard
Java Uuid Generator (JUG) is a library for generating all (3) types of UUIDs on Java. See (http://github.com/tlaukkan/mono-uuid-generator) for C#-based sister project!
(note: related to Draft-04 spec at: https://uuid6.github.io/uuid6-ietf-draft/ section 5.4) So, looks like there will be the counterpart for "null UUID" (all zeroes) wherein all 128 bits are 1s, so-called "Max...
So as per: * https://uuid6.github.io/uuid6-ietf-draft/ * https://www.ietf.org/archive/id/draft-peabody-dispatch-new-uuid-format-04.html there are 3 types; this is for implementing variant 8, DIY variant where actual definition of structure is not specified by spec; this...
It has been a while since I increased the JDK baseline and I think it would be reasonable to finally move to Java 8. This would make it a little...
I suggest to add a static method like the following to UUIDUtil (or any other appropriate class): `public static UUID generateThreadLocalRandomUUID() {` ` ThreadLocalRandom rnd = ThreadLocalRandom.current();` ` return UUIDUtil.constructUUID(UUIDType.RANDOM_BASED,...
After enabling JaCoCo based code coverage, CC badge is finally working. Displayed level, 46%, is on low side of usual things so would be good to spend some time increasing...
Hi, does it make sense to create a non synchronized version of NameBasedGenerator if the user knows the digester is thread safe? With my M1, the synchronized is about 40%...
The UUID generators do not support generating UUIDs with a timestamp before 1970. Such UUIDs may be of interest for various reasons, such as (1) users wishing to better understand...