You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ULID (Universally Unique Lexicographically Sortable Identifier) generator and parser for Java.
7
+
ULID (Universally Unique Lexicographically Sortable Identifier) generator and parser for Java. Refer [ulid/spec](https://github.com/ulid/spec) for a more detailed ULID specification.
8
8
9
-
Refer [ulid/spec](https://github.com/ulid/spec) for a more detailed ULID specification.
9
+
## Features
10
+
11
+
* Generates ULID to `String` (Crockford's base32) or `byte[]` (128-bit UUID compatible) objects
12
+
* Parses ULID from `String` (Crockford's base32) or `byte[]` (128-bit UUID compatible) objects
13
+
* Fast and simple static methods
14
+
* Includes ULID monotonic generator
15
+
* Zero runtime dependencies
10
16
11
17
## License
12
18
@@ -42,7 +48,7 @@ Add the following tag to `dependencies` tag in your `pom.xml` file. Change the v
0 commit comments