An open API service indexing awesome lists of open source software.

https://github.com/kkuegler/human-readable-ids-java

Generate human-readable id strings in Java
https://github.com/kkuegler/human-readable-ids-java

ids java

Last synced: 2 months ago
JSON representation

Generate human-readable id strings in Java

Awesome Lists containing this project

README

        

human-readable-ids-java
=======================

A Java id generator to produce random human-readable identifiers like 'fast-elephant-42'

Maven
-----
```xml

com.github.kkuegler
human-readable-ids-java
0.3

```

Use
---
```java
// create the generator once and use it any number of times, even concurrently across threads
HumanReadableIdGenerator idGen = new PermutationBasedHumanReadableIdGenerator();
String id = idGen.generate();
```

Acknowledgments
---------------
This project is based on the idea and word lists of [human-readable-ids.js](https://git.coolaj86.com/coolaj86/human-readable-ids.js)